我尝试运行我的python程序但是当我运行它没有任何反应

时间:2012-12-07 01:58:11

标签: python

我在运行我在python中编写的小互动故事时遇到了问题。我一直遇到某种非ASCII错误或某种不让我运行该程序的错误。

如果您想尝试,请参阅该计划:Program 这是我的代码:

#Programmer: Kebel Arias 11/8/12
# Story of Doors
# Interactive story where the user can choose between options in between the - - marks.

def main():

    print "I welcome you to the mind of the chosen. A place only understood by those who never forfeit. The chance to walk through the halls is given only but once the time has come for you to decide, will you stand aside, or never regret to have tried?"

#Quest is the word used to decide whether the player wants to play or quit.
    Quest = raw_input("  I welcome you to the mind of the chosen. A place only understood by those who never forfeit. The chance to walk through the halls is given only but once the time has come for you to decide, will you stand aside, or never regret to have tried?")

    if(Quest == "stand aside"):
        print "Have fun asleep, for those who will awake are the ones who take the leap." 
    if (Quest == "never regret to have tried"):
        print "I see you think yourself as worthy, I hope you know, this quest is full of low beings"
    print "Down the hall you walked with a line of doors not covered or locked. The choices are at hand with many experiences to be had."
    print "Step into a door and never look back, for your decisions will open a crack. Your choices are at hand, choose from the list written in sand."

#here the reader\player decides what quest he wants to go on, or what door they want to open. 
    Opendoor = raw_input("Door 1: The door of no troubles where you see everything in doubles ") + ("Door 2: ")  
    if(Opendoor == "Door 1"):

        print "The incense infilled maple shaped door was entered to the begin the scene." 
    print "Going straight through to a land engulfed by the waves controlled, where the shore is seen when the machines flee."
    print "Out through a mix of purple and green lies The Beheaded Dragon who whispers and schemes. 'Come to my lab, and enjoy the lick of a colorful tab.'"
    print "After a flash of happy and sad, you see through perspectives and forget the word 'bad'."
    print "With witches and crafts, comes the great Sage whose be riddled with mad."
    print " I know of a place where the sky is purple and nobodies hurtful heaven at night is spoken of. The minds are torn up with a thought of what’s next."


    ComeAlong = raw_input(" Will you -join the quest- or -eschew the test-? ")
    if(ComeAlong == "eschew test"):
       print "'I accept your decline and reply with a good-bye.'"
    if(ComeAlong == "join quest"):
        print "'I'm glad you see yourself as worthy, just remember kid, in here. No mind is sturdy.'"
        print " Here begins a trip to the land of nomads where you witness a dance and give it a try, for you have no doubts as you see with one eye. Forgotten stories of the times of war, for the children are busy learning to soar."
        print "you join this man with not but one rule 'never turn back, for there are consequences for trying to hack.'"
        print "'This is a place of glitches and traps, but the end lies open with stitches to map'"
    Woman = raw_input(" You journey onward through the forest and trees but come across some women on their knees their eyes are locked and only you hold the keys. You're given the choice to open the lock and -allow them to see- or leave them locked and -mimick the birds and the bees-.")   
    if(Woman == "mimick the birds and the bees"):
        print "You approach the women and accept their tease. They looks up at you with a smile, and simultaneously screech 'We see your story has ended and can now be marked as 'deceased' and within a blink of an eye you are paralyzed with nothing to drink."
        wait(2)
    print "Nice try, but this saddly proves, you're not ready to fly. and with that I wave to you a sincere and heart felt good-bye!"
    if(Woman == "allow them to see"):
            print " You approach the women and give them the keys, they grabs them and begin to flee but while the flock reaches there caves one of the women stands beside you and opens the lock."
            print " 'I know where your headed and can lend you my boat, it's right around the corner sitting by the dock.'"
            print " As you follow the woman you look up onto the sky and read aloud 'Take a deep breath and watch your step' confused by the words you ask the woman 'Hey, whats that mean?' with no response you look down to her but see nothing but a stream"
            print " 'Hello!?' you scream, but no one is to be seen. All alone you begin to gleam followed by your lungs releasing the steam"
            print " With that the scene darkens and you rise from your sleep, just to realize life, is but a dream."



# Second Door of choices.

    if(Opendoor == "Door 2"):
        print "This is a story of a young wounded boy, who was lost in his mind with one little toy. He sat on the floor waiting for more, but after an hour his feelings went sour."
        print "He rose up on his feet and started to wonder. Through the bright door there were tons of new people to meet."
        print " He made it his duty to connect with these people, even if they were him in a past life or sequel."
        print " After some time came a decision. To speak with -the man in the white-, or -the woman with no sight-"
        if(Decision == "the man in the white"):
            print " 'Hello mister. May i ask you some questions?'"
            print " 'Why yes you may, but i dont have time to give you a lesson.'"
            print " 'They will be quick i promise, What brings you here to the land of nostradamus?'"
            print " ' Well isnt it obvious? Nothing more than the thirst for knowledge!'"
            print " 'Ahh I see, but what do you do if you cant find the answer to the riddle you speak?'"
            print " 'Then I learn a new language and ask it to Nietzsche' "
            print " 'What if its a question with no answer?'"
            print "' Then I forget about philosophy and become a great dancer! But in all seriousness, you musn't forget for every box of questions there is box of answers'"
        if(Decision == "the woman with no sight"):
            print " 'Hello miss, do you have some free time?'"
            print " ' Ofcourse I do, and i'll give you it for a dime' "
            print " 'If I pay it is not free ' "
            print " 'it's a reward, not a fee.'"
            print " ' okay but if i dont enjoy what you have to say will I still have to pay?'"
            print " ' I'm sorry but you pay for the herbs, not the tea.'"
            print " 'I understand the concept, but i'll have to disagree.'"

            main() 

这是我第一次使用StackOverflow,所以如果还有什么我可以做的来帮助你帮助我,请告诉我。

2 个答案:

答案 0 :(得分:6)

在第28行,你有一个字符,它不是一个ASCII字符。您需要将该字符替换为'。这将使程序运行没有错误。将来,如果遇到类似的错误,可以使用以下命令将grep用于非ASCII字符:

grep --color='auto' -P -n "[\x80-\xFF]" your_file.py

其次,您需要在全局范围内调用main()(即它之前不应有任何缩进)。现在,它嵌套在条件中,当Python解释器读取文件的主体时不会执行。

答案 1 :(得分:0)

你没有提到这是什么版本的Python,但我猜2.7(绝对不是3.x)。

当我将其保存为文件并在2.7中运行时,我得到了这个:

  

SyntaxError:第30行文件./if.py中的非ASCII字符'\ xe2',但未声明编码;有关详细信息,请参阅http://www.python.org/peps/pep-0263.html

这正是它所说的。在Python 2.7中,如果要在字符串文字中键入任何非ASCII字符 - 甚至只需要é之类的内容 - 您必须提供编码声明。阅读错误消息中的URL以了解如何执行此操作。

另一种方法是逃避角色。您可以键入"Abré" - 或者更好地"Abr\xe9" - 而不是键入u"Abr\u00e9",而且它会正常工作

同时,无论哪种方式,您几乎肯定希望字符串是Unicode字符串,而不是8位字符串。这意味着代替"Foo",您希望u"Foo"无处不在。