Last active
April 8, 2019 00:30
-
-
Save Tabong/ac6454b77d4621e77a3febb0155b8872 to your computer and use it in GitHub Desktop.
The-MIND
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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