Skip to content

Instantly share code, notes, and snippets.

@bee-san
Created July 19, 2018 17:30
Show Gist options
  • Select an option

  • Save bee-san/31065d9453c4422c7a7ca72cf5b5db9f to your computer and use it in GitHub Desktop.

Select an option

Save bee-san/31065d9453c4422c7a7ca72cf5b5db9f to your computer and use it in GitHub Desktop.
def rtnBrandon():
return "brandon"
def rtnJohn():
return "john"
def rtnPerson():
age = int(input("What's your age?"))
if age == 21:
return rtnBrandon()
else:
return rtnJohn()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment