Skip to content

Instantly share code, notes, and snippets.

@Tabong
Last active April 8, 2019 00:30
Show Gist options
  • Save Tabong/ac6454b77d4621e77a3febb0155b8872 to your computer and use it in GitHub Desktop.
Save Tabong/ac6454b77d4621e77a3febb0155b8872 to your computer and use it in GitHub Desktop.
The-MIND
age = 40
age = int(age)
if age >= 45:
print("I am old.")
elif age != 40:
print("I am of age.")
elif age == 40:
print("Life begins at 40.")
else:
print("I am older.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment