为什么以下工作:
from itertools import chain
但以下不是?
import itertools.chain as chain
解决方法:
导入foo.bar语法只能用于从包中导入模块,而不能用于从模块中导入模块.来自foo导入栏可用于从包中导入模块或从模块导入对象.
2024-03-14 19:24:46
为什么以下工作:
from itertools import chain
但以下不是?
import itertools.chain as chain
解决方法:
导入foo.bar语法只能用于从包中导入模块,而不能用于从模块中导入模块.来自foo导入栏可用于从包中导入模块或从模块导入对象.