noteinput2 = str(input("What is my favorite color?"))
if noteinput2 == "blue" :
print("correct")
我怎么能做到这一点,我有点困惑,我可以用数字而不是文字来做到这一点?
这是在 python 3 中完成的
当我输入蓝色时,我最终得到了这个错误,我要为不正确添加一个 else 语句,但我一开始就无法正确运行。
这是我输入蓝色时得到的报告。
What is my favorite color?blue
Traceback (most recent call last):
File "/private/var/folders/2g/xlkssb4j67xd2m9y1kvxwg3r0000gn/T/Cleanup At Startup/Testcoding-405652050.072.py", line 73, in <module>
noteinput2 = str(input("What is my favorite color?"))
File "<string>", line 1, in <module>
NameError: name 'blue' is not defined
logout