Skip to content

Instantly share code, notes, and snippets.

@meantheory
Created March 31, 2020 16:28
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 meantheory/106f3349c09d1ec85eef1be1c082151b to your computer and use it in GitHub Desktop.
Save meantheory/106f3349c09d1ec85eef1be1c082151b to your computer and use it in GitHub Desktop.
Pony
first_column = {
1: "Tiny",
2: "Apple",
# ... fill in rest
31: "Sunny",
}
second_column = {
"A": "Rays",
"B": "Heart",
# ... fill in rest
"Z": "Blast",
}
def pony_name(birthday, first_name):
pn = "some name"
return pn
in_name = input('>Whats your name? ')
in_bday = input('>Whats your birthday? ')
name = pony_name(in_name, in_bday)
print(name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment