python如何在脚本中包含列表文件

时间:2015-03-16 18:25:33

标签: python

我有一个由以下内容生成的文件:

摘录:

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

1 个答案:

答案 0 :(得分:5)

在您正在使用的import表单中,您应该可以通过

访问这些组
dependencies_custom.group2[0]

类型表示法。如果您只想使用group2[0]表示法,请尝试使用:

from dependencies_custom import *