Python AttributeError: 'module' object has no attribute 'posseg'

 AttributeError: 'module' object has no attribute 'posseg'函數

遇到問題: it

若是 a 是個目錄, b 是個 b.py 文件, func 是 b.py 裏的函數, a 目錄裏有空的 __init__.py : 

import a # 沒問題 
import a.b # 沒問題,會在這一句找 a/b.py 
result = a.b.func() # 正常 
 
import a # 沒問題 
result = a.b.func() # 不行, a 下面並無 bimport

相關文章
相關標籤/搜索