If else

PHOTO EMBED

Wed Mar 17 2021 20:04:40 GMT+0000 (Coordinated Universal Time)

Saved by @fre_apples #python

credits = 120
gpa = 1.9

if (credits >= 120) and (gpa >= 2.0):
  print("You meet the requirements to graduate!")
else:
  print("You have met at least one of the requirements.")
content_copyCOPY