Last active
October 22, 2024 17:54
-
-
Save axurright/a28386e1d7c57de732af522cd1440f66 to your computer and use it in GitHub Desktop.
A simple thing I did when bored
This file contains hidden or 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
| def canDrive(): | |
| age = input("What's your age? ") | |
| if int(age) >= 18: | |
| print(True) | |
| else: | |
| print(False) | |
| canDrive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment