私はここからオンラインのPythonチュートリアルブックを読んでいます。コードは以下のとおりです。コードを実行すると、単語を入力できますが、以下のエラーが発生しました。コードの何が問題になっていますか?
関連するメモとして、Pythonを学習するためのより良いリソースがある場合は、私に知らせてください。オンラインで頻繁に更新されるものを探しています(例:railstutorial.org)。私が使用しているリソースには、この本の早い段階でも多くのエラーがあります。ありがとう。
Enter something : programmig is fun
Traceback (most recent call last):
File "break.py", line 5, in <module>
s = input('Enter something : ')
File "<string>", line 1, in <module>
NameError: name 'programmig' is not defined
#!/usr/bin/python
# Filename: break.py
while True:
s = input('Enter something : ')
if s == 'quit':
break
print('Length of the string is', len(s))
print('Done')