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?

Hi Aakeem welcome at DaniWeb!
I'm perhaps more newbie than you concerning Python, but this works with me:

secrete_door = [1,2,3,4]

if 1 in secrete_door:
    print( "Sorry try again.")

You have a range of integers, not a range of strings.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.