我仍然使用我的URL到DOC转换器,但我有一个问题.我想导入x.我说:
for x in range(1, 7): import imports[x] time.sleep(0.1)
我想要它导入x
列表项imports
.我该怎么做?
那是你要的吗?
import importlib for i in ['a', 'b', 'c']: importlib.import_module('foo.' + i)
如果你想要更通用的东西,你可以使用 exec
x = 'foo' y = 'bar' exec('from ' + x + ' import ' + y, locals(), globals())