我正在努力完成出色的“Python The Hard Way”,并将以下代码复制到名为 mystuff.py 的文件中:
class MyStuff(object):
def __init__(self):
self.tangerine = "And now a thousand years between"
def apple(self):
print "I AM CLASSY APPLES!"
在终端:
import mystuff
thing = MyStuff()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'MyStuff' is not defined
这在今天的其他简单类中反复发生。有人可以告诉我我做错了什么吗?