我有一个 python 脚本,我收到以下错误:
Traceback (most recent call last):
File "C:\Users\Tim\Desktop\pop-erp\test.py", line 1, in <module>
s = Something()
NameError: name 'Something' is not defined
这是导致问题的代码:
s = Something()
s.out()
class Something:
def out():
print("it works")
这是在 Windows 7 x86-64 下使用 Python 3.3.0 运行的。
为什么找不到Something
类?