1
我有一個腳本,需要從腳本所在的同一目錄中的另一個文件夾加載其他兩個模塊。無法從庫中導入模塊
在主腳本我有一行:
from modules import *
但我不斷收到此錯誤:
AttributeError: 'module' object has no attribute 'ts3'
我有一個__init__.py
文件中有這一行的modules
文件夾:
__all__ = ['setjoin', 'ts3']
Python是由於某種原因無法加載只是ts3
模塊。 它能夠完全正常加載setjoin
。
文件夾結構:
MAOW\
maow.py
\modules\
__init__.py
setjoin.py
ts3.py
任何幫助將不勝感激,謝謝:)