0

感谢您的所有帮助,我最近能够让它运行,但我无法弄清楚为什么我的程序会在这里结束。看着它,if answer == 3:应该只是带你去下一次相遇,但我的程序正在关闭。我错过了什么吗?

# First Encounter (main program really)
def fi_en():
    global pow, cun, per
    print"""
It smells of damp vegetation, and the air is particularly thick. You can 
hear some small animals in the distance. This was a nice place to sleep.

1. Stay close, find some cover, and wait for food to show up.

2. Explore the nearby marsh & find the nearest river, following it downstream.

3. Walk towards the large mysterious mountain in the distance. 
"""
    answer = int(raw_input(prompt))
    if answer == 1:
        cun_one = roll_3d6()
        if cun_one <= cun - 2:
            print"""Time passes as eventually you capture some varmints.
You feel slightly more roguish."""
            cun = cun + 1
            fi_en()
        else: 
            print """Time passes and a group of slavers marches into right 
where you are hiding in the woods. They locate you, capture you, and haul you
away for a lifetime of servitude in the main city.
Goodbye %s""" % name
    elif answer == 2: 
        power = roll_3d6()
        if power <= pow - 4:
            print"""You trudge through the marshes until you eventually reach 
a large river. Downstream from the river is a large temple covered in vines,
you walk towards it. You feel more powerful."""
            pow = pow + 2
            te_en()
        else:
            print """The vegetation here wraps itself around your legs making
it impossible to move. You will most likely die here in the vegetation. 
Goodbye %s.""" % name
    elif answer == 3:
        cun_two = roll_3d6()
        if cun_two <= cun:
            print """You make your way towards the mountain and you encounter
a really large group of devil dogs guarding the entrance to the mountain."""
            dd_en()
    else: 
        print"You have gotten lost and ended up right where you started."
        fi_en()

我的输出是:

It smells of damp vegetation, and the air is particularly thick. You can 
hear some small animals in the distance. This was a nice place to sleep.

1. Stay close, find some cover, and wait for food to show up.

2. Explore the nearby marsh & find the nearest river, following it downstream."

3. Walk towards the large mysterious mountain in the distance. 

> 3
Raymond-Weisss-MacBook-Pro:lod Raylug$
4

3 回答 3

2

在我看来,您好像错过了一大群恶魔狗。您确定要解决此问题吗?

于 2012-09-28T14:27:13.787 回答
1

删除所有内容,因为您已经开始工作了,只是一个评论。

您可以使用 input('Prompt'),因为它会自动变为 int,raw_input 将输入转换为字符串,然后将该字符串转换为 int,这是不必要的。

于 2012-09-28T15:44:11.280 回答
1

你还没有在任何地方定义你的全局变量。您在条件三中没有“else”语句,因此由于 cun_one 不小于/等于您未定义的 cun 变量,因此当 answer == 3 时无事可做。

于 2012-09-28T14:34:37.967 回答