Created
April 30, 2020 08:18
-
-
Save raeq/8c432d2ea4a1e23f20f54b618035c599 to your computer and use it in GitHub Desktop.
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
age = input("Please tell me your age: ") | |
age = int(age) | |
if age < 21: | |
print ("No alcohol can be served to you.") | |
else: | |
print ("Which drink may I prepare for you?") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment