Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 10, 2020 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/be5cc38c550b7b3094f1c6a4e0078e02 to your computer and use it in GitHub Desktop.
Save codecademydev/be5cc38c550b7b3094f1c6a4e0078e02 to your computer and use it in GitHub Desktop.
Codecademy export
# Define your functions
def coffee_bot():
print("Welcome to the cafe!")
def get_size():
res = input("What size drink can I get for you? \n[a] Small \n[b] Medium \n[c] Large \n >")
print (res)
# Call coffee_bot()!
coffee_bot()
get_size()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment