So I'm pretty sure I've done this completely wrong but I don't know how to do it. I was planning to use an array but don't know how. I'm pretty new to the less fluffy-side of Python (Learning it at school) So if I could have a hand with this it would be much appreciated.
So I'm trying to get some practise designing and programming, and I wanted to make a Pokémon type comparison using a chart like this:
http://i.kinja-img.com/gawker-media/image/upload/s--6gT1hiPW--/fxovveduxtomv4srnqk1.png
So, the idea is that I input the type(s) and it will output its strengths and weaknesses. But for the life of me I cannot get past the initial stage of selecting a type.
Here's my first couple of lines:
Elements = "Normal","Fire","Water","Grass","Electric","Bug","Flying","Ground","Rock","Posion","Dragon","Dark","Fairy","Psychic","Steel","Fighting","Ice"
type1 = input("Please input a type")
while type1 != Elements:
type1 = input("Please input a real type")
print("Good Job, this part works!") # But it doesn't get to this point...
I'm sorry its so bad, but everyone starts off naïve right? Thank you in advance for any help you can give me!