如何制作每个 CSV 行的子列表并将该子列表放入列表中

Posted

技术标签:

【中文标题】如何制作每个 CSV 行的子列表并将该子列表放入列表中【英文标题】:How do i make a sublist of every CSV row and put that sublist inside a list 【发布时间】:2019-08-23 22:07:06 【问题描述】:

我正在为 csv 文件中的每一行创建一个子列表,但我得到了一个列表

wines_list = []

for row in wines:
    wines_list.append(row)

print(wines_list)

这会返回:

['id', 'country', 'description', 'designation', 'points', 'price', 
'province', 'taster_name', 'title', 'variety', 'winery', 'fixed acidity', 
'volatile acidity', 'citric acid', 'residual sugar', 'chlorides', 'free 
sulfur dioxide', 'total sulfur dioxide', 'density', 'pH', 'sulphates', 
'alcohol']

但我不想将所有值附加到子列表,并将其附加到 wines_list

所以我希望 wines_list 变成这样:

[[1, 'netherlands', 'description of the wine', 'designation', 'points', 'price', 
'province', 'taster_name', 'title', 'variety', 'winery', 'fixed acidity', 
'volatile acidity', 'citric acid', 'residual sugar', 'chlorides', 'free 
sulfur dioxide', 'total sulfur dioxide', 'density', 'pH', 'sulphates', 
'alcohol'], ANOTHER SUB LIST HERE]

【问题讨论】:

***.com/questions/41585078/… 【参考方案1】:

最简单的方法是这样的

import csv
pathtocsv='path/to/file'
with open(pathtocsv,'r') as cfile:
    creader=csv.reader(cfile,delimiter=',')
    wines_list=list(creader)

print(wines_list)

那么wines_list 将是一个列表列表

【讨论】:

如果您不想要标题,当然可以。或 wines_list.pop(0)with 块的末尾 谢谢!让它工作,我会尽快接受!

以上是关于如何制作每个 CSV 行的子列表并将该子列表放入列表中的主要内容,如果未能解决你的问题,请参考以下文章

BASH - 如何从 CSV 文件中的列中提取数据并将其放入数组中?

powershell Powershell脚本,用于从CSV中提取数据并将其放入SharePoint列表中。

如何获取每个打开窗口的名称列表并将其放入数据框中?

我有列表作为列值。如何将每个列表项放入自己的行中?

如何将数据库表中的列放入动态列表中?

如何在mysql中制作x列表?