私は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