在while循环中重置raw_input(python)

时间:2012-12-04 15:15:22

标签: python while-loop raw-input

所以我试图让这个引擎工作,我做了,但它破坏了我的程序。 (来自LPTHW)

我基本上试图访问一个函数,它从用户那里获得11次输入,如果用户没有猜到正确的输入,他们就死了(在游戏中),但我修复了从引擎发送提示到函数,似乎打破了我输入11次的功能,并且对所有11个输入使用相同的猜测。

这是主要引擎

globvar = ' '

class Game(object):

    def __init__(self, start):
        self.quips = [
            "You died.  You kinda suck at this.",
            "Your mom would be proud. If she were smarter.",
            "Such a luser.",
            "I have a small puppy that's better at this."
        ]
        self.start = start


    def play(self):
        # next_room_name is taken from init argument start
        next_room_name = self.start

        while True:
            global globvar
            print "\n--------"
            # set variable room to get function from next_room_name
            room = getattr(self, next_room_name)

            print room.__doc__

            if room == self.laser_weapon_armory:
                prompt = raw_input("[keypad]> ")

            elif room == self.escape_pod:
                prompt = raw_input("[pod #]> ")
            else:
                prompt = raw_input("> ")
        globvar = prompt     
            # unpacks function from next_room_name into room
            next_room_name = room()

这是我试图开始工作的功能

def laser_weapon_armory(self):
        """
        You do a dive roll into the Weapon Armory, crouch and scan the room
        for more Gothons that might be hiding.  It's dead quiet, too quiet.
        You stand up and run to the far side of the room and find the
        neutron bomb in its container.  There's a keypad lock on the box
        and you need the code to get the bomb out.  If you get the code
        wrong 10 times then the lock closes forever and you can't
        get the bomb.  The code is 3 digits.
        """
        code = "%d%d%d" % (randint(1,9), randint(1,9), randint(1,9))

        guess = globvar
        guesses = 0

        while guess != code and guesses < 10:
            print "BZZZZEDDD!"
            guesses += 1
            guess = globvar

        if guess == code:
            print "The container clicks open and the seal breaks, letting gas out."
            print "You grab the neutron bomb and run as fast as you can to the"
            print "bridge where you must place it in the right spot."
            return 'the_bridge'
        else:
            print "The lock buzzes one last time and then you hear a sickening"
            print "melting sound as the mechanism is fused together."
            print "You decide to sit there, and finally the Gothons blow up the"
            print "ship from their ship and you die."
            return 'death'

这是我得到的输出

--------

        You do a dive roll into the Weapon Armory, crouch and scan the room
        for more Gothons that might be hiding.  It's dead quiet, too quiet.
        You stand up and run to the far side of the room and find the
        neutron bomb in its container.  There's a keypad lock on the box
        and you need the code to get the bomb out.  If you get the code
        wrong 10 times then the lock closes forever and you can't
        get the bomb.  The code is 3 digits.

[keypad]> 124
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
The lock buzzes one last time and then you hear a sickening
melting sound as the mechanism is fused together.
You decide to sit there, and finally the Gothons blow up the
ship from their ship and you die.

1 个答案:

答案 0 :(得分:1)

这是你要找的那种东西吗?你的问题似乎不是很清楚

while guess != code and guesses < 10:
        guess = raw_input("BZZZZEDDD! - try again?")
        guesses += 1
        guess = ''
相关问题