#if else loop in python
#simple example
age = int(input("What is your age: "))
if age < 18:
print("You can't vote")
#if you enter your age less than 18 it will print you can't vote
else:
print("you can vote")
#if you enter your age greater than 18 it will print you can vote