Files
it_school/Python_module_1/python_006.py
Ionel Andrei Cataon 80d368e4c5 Python lessons
2026-01-27 20:06:30 +02:00

7 lines
164 B
Python

#!/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.")