I was wondering if there was a way to use the values in a list
one would create.
Such as
secrete_door = [1,2,3,4]
print "Choose the right door and you may proceed."
print "Guess a door 1 through 4."
# I would like to pull a number from the list
if "1" in secrete_door:
print "Sorry try again."
#is this possible?