gpt4 book ai didi

python - 如何在 Python 中将 CSV 列导入为列表?

转载 作者:行者123 更新时间:2023-11-30 22:21:15 25 4
gpt4 key购买 nike

我有一个很大的 CSV,第一列是词汇单词,第二列是定义。我想在 iPython 工作区中访问这些 CSV 列中的值,我将在其中将每个 CSV 列的内容放入列表中。

假设我的示例 CSV 如下所示:

study_list.csv = [
vocabulary,translation
machen,make
gehen,go
geben,give]

我试图在 iPython 中得到这样的结果:

vocabulary = ["machen", "gehen", "geben"]
translation = ["make", "go", "give"]

一旦在 Python 中定义了这些列表,我就应该能够执行以下操作:

print(vocabulary)
>machen, gehen, geben

print(translation)
>make, go, give

最佳答案

with open('study_list.csv','r') as csv_file:
lines = csv_file.readlines()

vocabulary = []
translation = []
for line in lines
data = line.split(',')
vocabulary.append(data[0])
translation.append(data[1])

您可以为其他列创建其他列表,就像上面的 for 循环一样,并使用相应的索引附加到它们内部。

关于python - 如何在 Python 中将 CSV 列导入为列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48692264/

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