作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能是一个愚蠢的问题,但是:我的代码运行良好,直到我尝试添加 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/
我是一名优秀的程序员,十分优秀!