Well im having a little problem with some tuples or more so about defining which tuple
#Start of my tuples
Rock = ("Scissors","Fire","Snake","Human","Wolf","Sponge","Tree")
Fire = ("Scissors","Paper","Snake","Human","Tree","Wolf","Sponge")
Scissors = ("Air","Tree","Paper","Snake","Human","Wolf","Sponge")
Snake = ("Human","Wolf", "Sponge", "Tree","Paper","Air","Water")
Human = ("Tree","Wolf","Sponge","Paper","Air","Water","Dragon")
Tree = ("Wolf","Dragon","Sponge","Paper","Air","Water","Devil")
Wolf = ("Sponge","Paper","Air","Water","Dragon","Lightning","Devil")
Sponge = ("Paper","Air","Water","Devil","Dragon","Gun","Lightning")
Paper = ("Air","Rock", "Water", "Devil","Dragon","Gun","Lightning")
Air = ("Fire","Rock","Water","Devil","Gun","Dragon","Lightning")
Water = ("Devil","Dragon","Rock","Fire","Scissors","Gun","Lightning")
Dragon = ("Devil","Lightning","Fire","Rock","Scissors","Gun","Snake")
Devil = ("Rock","Fire","Scissors","Gun","Lightning","Snake","Human")
Lightning = ("Gun","Scissors","Rock","Tree","Fire","Snake","Human")
Gun = ("Rock","Tree","Fire","Scissors","Snake","Human","Wolf")
now after this i also ask the user for there choice with a simple
user = raw_input("What is your Choice?")
this works all sweet and such until i got to the if statements
now what i wanted to do was use the variable user to identify which tuple must be searched to see if the player has won
if comp in user
Comp is another variable which holds the computers choice (randomly generated) and user is obviously what the user put in (theres validation to check that it is an existing choice with another tuple) i want to somehow manipulate the string that user holds to identify the tuple this would result in 3 If statements (Win, Draw, Loss) opposed to 15 and i later want to expand this to more gestures like RPS-101 or something
any ideas?