我刚刚从 2.5 升级到 python2.7.5,现在我收到了这个错误。
ImportError: Import by filename is not supported.
在以下代码行:
set = __import__(ground[0], globals(), locals(), ['*'], level=0)
我们不能再通过电话__import__
了吗?
在 2.7 中有什么解决方法?
我刚刚从 2.5 升级到 python2.7.5,现在我收到了这个错误。
ImportError: Import by filename is not supported.
在以下代码行:
set = __import__(ground[0], globals(), locals(), ['*'], level=0)
我们不能再通过电话__import__
了吗?
在 2.7 中有什么解决方法?