我有一个由以下内容生成的文件:
摘录:
group0 = ['ParentPom']
group1 = ['Commons','http', 'availability','ingestPom','abcCommons','solrIndex','123Service']
...
group10=['totalCommons','Generator']
如何在我的python脚本中包含它,尝试导入但没有运气
>>> import dependencies_custom
>>> print (group2[0])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'group2' is not defined
答案 0 :(得分:5)
在您正在使用的import
表单中,您应该可以通过
dependencies_custom.group2[0]
类型表示法。如果您只想使用group2[0]
表示法,请尝试使用:
from dependencies_custom import *