9

我想在 for 循环中创建一系列具有唯一名称的列表,并使用索引来创建列表名称。这是我想做的

x = [100,2,300,4,75]

for i in x:

  list_i=[]

我想创建空列表,例如

lst_100 = [], lst_2 =[] lst_300 = []..

有什么帮助吗?

4

3 回答 3

21

不要动态命名变量。这使得与他们一起编程变得很困难。相反,使用字典:

x = [100,2,300,4,75]
dct = {}
for i in x:
    dct['lst_%s' % i] = []

print(dct)
# {'lst_300': [], 'lst_75': [], 'lst_100': [], 'lst_2': [], 'lst_4': []}
于 2013-02-11T20:03:28.820 回答
8

使用字典来保存您的列表:

In [8]: x = [100,2,300,4,75]

In [9]: {i:[] for i in x}
Out[9]: {2: [], 4: [], 75: [], 100: [], 300: []}

要访问每个列表:

In [10]: d = {i:[] for i in x}

In [11]: d[75]
Out[11]: []

如果你真的想lst_在每个标签中都有:

In [13]: {'lst_{}'.format(i):[] for i in x}
Out[13]: {'lst_100': [], 'lst_2': [], 'lst_300': [], 'lst_4': [], 'lst_75': []}
于 2013-02-11T20:03:30.567 回答
0

与其他人的 dict-solutions 稍有不同的是使用 defaultdict。它允许您通过调用所选类型的默认值来跳过初始化步骤。

在这种情况下,选择的类型是一个列表,它将在字典中为您提供空列表:

>>> from collections import defaultdict
>>> d = defaultdict(list)
>>> d[100]
[]
于 2013-02-11T22:53:27.253 回答