如何导入列表项?

时间:2015-12-12 19:24:27

标签: python

我仍然使用我的URL到DOC转换器,但我有一个问题。 我想导入x。 我说:

for x in range(1, 7):
    import imports[x]
    time.sleep(0.1)

我希望它导入列表x的项imports。我该怎么做?

1 个答案:

答案 0 :(得分:5)

这就是你想要的吗?

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())