我似乎遇到了一个非常令人困惑的错误。 Python尽管导入了包含我班级的.py 文件,但坚持说该班实际上不存在。
测试模块. py 中的类定义 :
class Greeter:
def __init__(self, arg1=None):
self.text = arg1
def say_hi(self):
return self.text
主. py :
#!/usr/bin/python
import testmodule
sayinghi = Greeter("hello world!")
print(sayinghi.say_hi())
我有一个理论认为进口品没有按应该的那样有效。 我如何正确做到这一点呢?