Lesson 5 - If/Else Statements

In this lesson we will be learning about If/Else statements which portray different cause and effect situations!

    x = int(input("How old are you? "))
    if x > 65:
      print("Wow! You are older than 65!")
    else:
      print("You are younger than 65!")
        
< Previous Next >