我对列表索引很生气,无法解释我做错了什么。
我有这段代码,我想在其中创建一个列表列表,每个列表包含我从csv
文件中读取的相同电路参数(电压,电流等)的值看起来像这样:
Sample, V1, I1, V2, I2
0, 3, 0.01, 3, 0.02
1, 3, 0.01, 3, 0.03
等等。我想要的是创建一个列表,例如包含V1和I1(但我想以交互方式选择),格式为[[V1],[I1]],所以:
[[3,3], [0.01, 0.01]]
我正在使用的代码是:
plot_data = [[]]*len(positions)
for row in reader:
for place in range(len(positions)):
value = float(row[positions[place]])
plot_data[place].append(value)
plot_data
是包含所有值的列表,而positions
是一个列表,其中包含我要从.csv
文件中复制的列的索引。问题是,如果我在shell中尝试命令,似乎工作,但如果我运行脚本而不是将每个值附加到正确的子列表,它会将所有值附加到所有列表,所以我获得2(或更多) )相同的清单。
答案 0 :(得分:88)
Python列表是可变对象,在这里:
plot_data = [[]] * len(positions)
您正在重复相同的列表len(positions)
次。
>>> plot_data = [[]] * 3
>>> plot_data
[[], [], []]
>>> plot_data[0].append(1)
>>> plot_data
[[1], [1], [1]]
>>>
列表中的每个列表都是对同一对象的引用。你修改一个,你会看到所有修改。
如果您想要不同的列表,可以这样做:
plot_data = [[] for _ in positions]
例如:
>>> pd = [[] for _ in range(3)]
>>> pd
[[], [], []]
>>> pd[0].append(1)
>>> pd
[[1], [], []]
答案 1 :(得分:2)
import csv
cols = [' V1', ' I1'] # define your columns here, check the spaces!
data = [[] for col in cols] # this creates a list of **different** lists, not a list of pointers to the same list like you did in [[]]*len(positions)
with open('data.csv', 'r') as f:
for rec in csv.DictReader(f):
for l, col in zip(data, cols):
l.append(float(rec[col]))
print data
# [[3.0, 3.0], [0.01, 0.01]]