我很清楚,這是一個noob問題,但我似乎找不到解決方案,我很新編程但渴望學習。我正在瀏覽python中的第一個google clases,這是我得到的錯誤。名稱未定義錯誤
def both_ends(s):
print s[0:2], s[3:5]
return
x = input('...: ')
both_ends(x)
[email protected]:~/Desktop/p2$ python test2.py
...: haloj
Traceback (most recent call last):
File "test2.py", line 10, in <module>
x = input('...: ')
File "<string>", line 1, in <module>
NameError: name 'haloj' is not defined
請解釋一下問題所在。
謝謝
謝謝你,這解決了我的問題,並幫助我理解它。 – Sergei 2012-02-16 17:10:05