Lesson 8: Conditional Statements

age = int(input("Enter your age: "))

if age >= 18:
  print("You are eligible")
else:
  print("You are not eligible")
Next Lesson →