0
我是用一個for循環工作,使使用循環一個超級簡單的程序,要求你對你的愛好三次並追加你的答案列表叫愛好:的Python:NameError在一個非常簡單的程序
hobbies = []
for me in range(3):
hobby=input("Tell me one of your hobbies: ")
hobbies.append(hobby)
如果我舉個例子,給它「編碼」,它會返回:
Traceback (most recent call last):
File "python", line 4, in <module>
File "<string>", line 1, in <module>
NameError: name 'coding' is not defined
需要注意的是,如果我使用Python 2.7,並使用raw_input
相反,程序精美的作品。