2011-10-14 156 views
1

你好是使用Eclipse和PyDev的,我想知道爲什麼我的示例代碼將無法正常工作嘗試使用while功能。雖然功能蟒蛇

print("Welcome to the annoying program") 
response = "" 
while response != "Because.": 
    response = input("why\n") 

print("Oh,ok") 

輸出如下:

Welcome to the annoying program 
why 
Because. 
Traceback (most recent call last): 
File "/Users/calebmatthias/Document/workspace/de.vogella.python.first/simpprogram.py", l  ine 9, in <module> 
    response = input("why\n") 
File "/Users/calebmatthias/Desktop/eclipse  2/plugins/org.python.pydev_2.2.3.2011100616/PySrc/pydev_sitecustomize/sitecustomize.py", line 210, in input 
return eval(raw_input(prompt)) 
File "<string>", line 1 
Because. 
    ^
SyntaxError: unexpected EOF while parsing 
+0

請修復您的代碼格式化,並確保它反映了究竟你有什麼。空格在Python中很重要。 –

+0

它看起來像是在混合來自Python 2.X和Python 3.X的代碼。這個代碼的腳本是哪個版本的? – thefragileomen

回答

6

input的功能在2.x的評估輸入作爲Python代碼!改用raw_input函數。

隨着input,你的文字 「因爲」。正在被評估,並且這是一個語法錯誤,因爲這個點後面沒有任何東西。

+0

這是真的,但它並不能真正解釋報告的錯誤。 –

+0

增加了更多細節。 –

+0

Thx sooooo多! – Kbob1998