2017-02-17 51 views
-3
loop_flag = 1 
while loop_flag == 1: 
    choice = raw_input("Enter 'quit' to Exit the loop: ") 
    if choice == 'quit': 
    loop_flag = 1 
    else: 
     print ("Keep Going") 

我有這個問題的raw_input 該消息是我不理解的raw_input的

Traceback (most recent call last): 
File "C:\Users\Exemm\Downloads\TNCC\ITN_260_Network_security_basics\Week 6         02.13 – 02.19\Lab 1 - Copy (4)\ts.py", line 4, in <module> 
    choice = raw_input ("Enter 'quit' to Exit the loop: ") 
    *NameError: name 'raw_input' is not defined** 
+1

標記提供相應的語言標籤的問題。這是蟒蛇嗎?如果是這樣,縮進看起來不正確。另外,不應該'if'是'if',''''退出''是''''退出''並且''''是'''' – Michael

+0

我標記了python。 –

+0

我試着在這裏縮進,但是我沒有辦法做,我會再試一次,我不明白你最後的評論「be」。對不起,我正在學習, –

回答

1
loop_flag = 1 
while loop_flag == 1: 
    choice = raw_input("Enter ‘quit’ to Exit the Loop: ") 
    if choice == "quit": 
     loop_flag = 0 
    else: 
     print "Keep Going" 
+0

我想作者得到了「IndentationError:意外縮進」 – malyy

+0

消息是我沒有定義raw_input –

+0

而不是僅僅提供代碼,你能解釋一下你的答案嗎? POST的代碼如何錯誤? – Gray