gpt4 book ai didi

python - Defaultdict/没有足够的值来解压

转载 作者:行者123 更新时间:2023-12-01 08:54:22 29 4
gpt4 key购买 nike

这可能是一个愚蠢的问题,但是:我的代码运行良好,直到我尝试添加 ml.我尝试了几种方式但是

init_dict = []
with open("example.csv", "r") as new_data:
reader = csv.reader(new_data, delimiter=',', quotechar='"')
for row in reader:
if row:
columns = [row[0], row[1], row[3]]
init_dict.append(columns)

result = defaultdict(list)
for ean, price, ml in init_dict:
result[ean].append(price)
result[ean].append(ml)

for ean, price, ml in result.items():
print(ean, " // " . join(price), "::". join(ml))

我需要将 ml 信息添加到我当前的输出中,如下所示:

676543 : 6,7 // 6,7
786543 : 3
4543257 : 7,8 // 9,0

等等...谢谢您的帮助

最佳答案

您的 result 变量是两个项目列表的字典,因此您应该像这样解压其项目:

for ean, (price, ml) in result.items():

关于python - Defaultdict/没有足够的值来解压,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52875852/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com