-7
def Game():

    # Story Background
    print "You decide to take a walk outside one night when you come accross a corn field."
    print "You notice an omnious sound coming from the other side of the maze."
    Enter = raw_input("Do you enter? (yes or no)")

    if Enter == "Yes" or "yes":
        print "You walk into the maze and the corn is so thick together you cant push through"
        print "so you walk down the isle surrounded by corn and you come to an intersection."
        turn = raw_input("Which way do you go? (Left, Right, Forward, Leave)")

        if turn == "Left" or "left":
            print "After you turn left you come accross a dead end and you are forced to turn around."
            print "You return to the intersection."
            turn2 = raw_input("Which way do you go? (Left, Forward, Leave)")

            if turn2 == "Forward" or "forward":
                print "you walk on deeper into the maze when you come to a left turn"
                print "you turn left and come accross a crossroad."
                turn3 = raw_input("Which way do you go? (Left, Right, Leave)")

                if turn3 == "Right" or "right":
                    print "You come to a dead end and are forced to turn around"
                    turn4 = raw_input("Which way do you go? (Forward, Leave)")

                    if turn4 == "Forward" or "forward":
                        print "You walk to a hole in the ground stopping you from moving any further"
                        print "the hole seems to be filled with snakes so you cant go through it."
                        print "you are forced to leave the maze."

                    elif turn4 == "leave" or "Leave":
                        print "you leave the maze and return home."

                    else:
                         print "you walk into a wall and go into an irreversable coma"

                elif turn3 == "Left" or "left":
                    print "You walk to a hole in the ground stopping you from moving any further"
                    print "the hole seems to be filled with snakes so you cant go through it."
                    print "you are forced to leave the maze."
                    print "you leave the maze and return home."

                else:
                    print "you walk into a wall and go into an irreversable coma"

            elif turn2 == "Left" or "left":
                print "you turn Left into the maze when you come by a strange man laying on the ground."
                man == raw_input("What do you do? (Help, keep going)")

                if man == "Help" or "help":
                    print "you help the man up and he knocks you out cold"
                    print "you wake back up in your bed at home"

                elif man == "keep going" or "Keep going":
                    print "You leave the man behing after stealing his wallet."
                    print "YOU HAVE REACHED THE END OF THE MAZE"
                    print "You realize the noise was the sound of a old farmer milking a cow."
                    print "The farmer nags at you for coming on private property."

                else:
                    print "you walk into a wall and go into an irreversable coma"

            elif turn2 == "leave" or "Leave":
                print "you leave the maze and return home."

            else:
                print "you walk into a wall and go into an irreversable coma"

        elif turn == "Forward" or "forward":
            print "you move forward into the maze when you come by a strange man laying on the ground."
            man == raw_input("What do you do? (Help, keep going)")

            if man == "Help" or "help":
                    print "you help the man up and he knocks you out cold"
                    print "you wake back up in your bed at home"

            elif man == "keep going" or "Keep going":
                    print "You leave the man behing after stealing his wallet."
                    print "YOU HAVE REACHED THE END OF THE MAZE"
                    print "You realize the noise was the sound of a old farmer milking a cow."
                    print "The farmer nags at you for coming on private property."

            elif turn == "leave" or "Leave":
                    print "you leave the maze and return home."

            else:
                print "you walk into a wall and go into an irreversable coma"

        elif turn == "Right" or "right":
            print "After you turn right you come into a left turn only path."
            print "You turn left and you come to a crossroad."
            turn = raw_input("Which way do you go? (Left, Right, Leave)")

            if turn == "Right" or "right":
                print "You come to a dead end and are forced to turn around"
                turn = raw_input("Which way do you go? (Forward, Leave)")

                if turn == "Forward" or "forward":
                    print "You walk to a hole in the ground stopping you from moving any further"
                    print "the hole seems to be filled with snakes so you cant go through it."
                    print "you are forced to leave the maze."

                else:
                    print "you walk into a wall and go into an irreversable coma"

            elif turn == "Forward" or "forward":
                print "You walk to a hole in the ground stopping you from moving any further"
                print "the hole seems to be filled with snakes so you cant go through it."
                print "you are forced to leave the maze."

            else:
                print "you walk into a wall and go into an irreversable coma"

        elif turn == "Leave" or "leave":
            print "you leave the maze and return home."

        else:
            print "you walk into a wall and go into an irreversable coma"



    elif Enter == "No" or "no":
        print "You walk on into the depths of the night and are robbed by a couple street thugs."

    else:
        print "you walk into a wall and go into an irreversable coma"






def main():

    Game()

main()

当我使用这个程序时,无论我进入 python shell,它都会一遍又一遍地说同样的事情.. 它不会将 raw_input 语句放入上下文中并将它们放入 if 语句中

4

2 回答 2

2
if Enter == "Yes" or "yes":

这不是or工作方式。这被解释为if (Enter == "Yes") or "yes":。在 python 中,非空字符串总是正确的,所以所有if类似的语句都是正确的。我会建议像

if Enter.lower() == "yes":

它处理所有的大写/小写组合。

于 2013-03-11T01:00:09.103 回答
1

您的语法在这里是错误的:

if Enter == "Yes" or "yes":

这个条件永远成立。Enter == "Yes"首先被评估。如果布尔表示为False"yes"则将考虑 的布尔表示。bool("yes")总是True

考虑做类似的事情:

if Enter in ('Yes', 'yes'):

或者:

if Enter.lower() == 'yes':
于 2013-03-11T00:58:39.513 回答