Skip to content

Instantly share code, notes, and snippets.

@axurright
Last active October 22, 2024 17:54
Show Gist options
  • Select an option

  • Save axurright/a28386e1d7c57de732af522cd1440f66 to your computer and use it in GitHub Desktop.

Select an option

Save axurright/a28386e1d7c57de732af522cd1440f66 to your computer and use it in GitHub Desktop.
A simple thing I did when bored
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