我对 Python 很陌生,我有这样的代码:
class Configuration:
@staticmethod
def test():
return "Hello World"
test
当我像这样从其他 python 代码调用该方法时:
import test
test.Configuration.test()
我收到这样的错误:
Traceback (most recent call last):
File "example.py", line 3, in <module>
test.Configuration.test()
AttributeError: 'module' object has no attribute 'test'
我在哪里犯了错误?
编辑:
我的目录结构:
root
--example.py
--test
----__init.py__
----Configuration.py