Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了这个简单的 Python 程序:
x == 3 打印 x
但我收到此错误:
回溯(最近一次通话最后): 文件“”,第 1 行,在 NameError:名称“x”未定义
为什么?
==是为了比较,不是赋值。你在问 x 是否等于 3,但还没有告诉 Python x 是什么。
==
你要这个:
x = 3 print x