python
コード
while input('y or n?') != 'n':
for i in range(1, 6):
print(i)
◆実行後nやyを入れてもエラーになる。
Traceback (most recent call last):
while input('y or n?') != 'n':
File "<string>", line 1, in <module>
NameError: name 'y' is not defined
◆実行環境
vscode
python
回答2件
あなたの回答
tips
プレビュー