Python lessons

This commit is contained in:
Ionel Andrei Cataon
2026-01-27 20:06:30 +02:00
parent c4b2844895
commit 80d368e4c5
10 changed files with 92 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
#!/home/andrei/it_school/bin/python3
x = int(input("Introduceti o varsta: "))
if ((x >= 0) and (x <= 18)):
print("Nu poti vota.")
else:
print("Poti vota.")