Created
September 20, 2015 06:36
-
-
Save bolenton/f697ad7c1451cbec8638 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
print("Yo fool! whats your name?") | |
user_name = input() | |
print("OK Trainer: {0}, so you want to be a pokemon master huh?".format(user_name.upper())) | |
print("This is gonna be a fun filled adventure mixed hard work!") | |
print("Are you sure this is what you want?") | |
print("-----------------------------------------------------") | |
print("(Yes) or (No)") | |
yes_or_no = input().upper() | |
while yes_or_no[0] == "Y": | |
print("Glad to know your on board. Choose your first Pokemon.") | |
print("1. Bulbasaur") | |
print("2. Squirtle") | |
print("3. Charmander") | |
print("-----------------------------------------------------") | |
user_pokemon = input().upper() | |
if user_pokemon[0] == "1" or user_pokemon[0] =="B": | |
print("What the!?!?!? You really want Bulbasaur? are you ok?") | |
break | |
elif user_pokemon[0] == "2" or user_pokemon[0] =="S": | |
print("Really Squirtle? .... what a wuss....") | |
break | |
elif user_pokemon[0] == "3" or user_pokemon[0] == "C": | |
print("Charmander huh.... are you insane?") | |
break | |
else: | |
print("Thats not a valid choose... dimwit!") | |
print("Get out of my Lab!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment