我读到要使用python文件作为导入模块,我需要放在__init__.py目录中。
我有以下目录结构:
data_load
-- __init__.py
-- rand_data.py
etc
-- __init__.py
-- test.py
在 test.py 中,我导入了一个在 rand_data 中定义的类,我得到了错误:
python test.py
Traceback (most recent call last):
File "test.py", line 8, in <module>
from data_load.rand_data import RandData
ModuleNotFoundError: No module named 'data_load'
慕慕森
翻过高山走不出你
相关分类