Previous Lecture Lec 5 Next Lecture

Lec 5, Mon 01/20

raining = False
sunny == True
weekend = True

if raining == True:
  print("bring an umbrella")
elif sunny == True:
  print("remember your skateboard")
  if weekend == True:
    print("Let's go swimming")
  else
    print("Study outside")

print("Have a great day!")

Output:

“Wear sunscreen!” “Let’s go swimming” “Have a great day!”