From 5cd1112a436f1d3f8a705a99fd29875f2ea0df50 Mon Sep 17 00:00:00 2001 From: Jishu Sengupta <99582530+voiDXDops@users.noreply.github.com> Date: Sun, 30 Oct 2022 13:49:49 +0530 Subject: [PATCH] Pokemon Selector game It grants you an unique Pokemon everytime you run it!! --- PokemonGame.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 PokemonGame.py diff --git a/PokemonGame.py b/PokemonGame.py new file mode 100644 index 0000000..888a6c0 --- /dev/null +++ b/PokemonGame.py @@ -0,0 +1,9 @@ +import random + +def pokeball(): + return random.choice(["ChariZard", "Zekrom", "Bulbasaur", "Wartortle", "Abomasnow", "Arceus"]) + +p = pokeball() +n=input("Enter your name: ") +print("Congratulations!!", n,"\nYou got: ") +print(p, "as your partner pokemon!")