gpt4 book ai didi

python - 在 csv 中搜索字符串并保存该列

转载 作者:行者123 更新时间:2023-12-01 05:41:48 24 4
gpt4 key购买 nike

使用 pythons csv 模块,我尝试打开一个 CSV 文件,在其中搜索特定字符串

在该文件中,一旦找到,就存储该列。这是我现在阅读专栏的方式,但我

并不总是知道我想要的具体列号,因此我需要搜索列

名称代替。

with open('Work.csv','r') as f:
reader = csv.reader(f)
reader.next()
for row in reader:
for (i ,v) in enumerate(row):
columns[i].append(v)

我的 csv 看起来像:

Default  Names  
0 1
2 3

最佳答案

import csv
columns = [] #save the columns in this list
with open('myfile.csv','r') as f:
reader = csv.reader(f, delimiter='\t')
ind = next(reader).index('Default') #find the index of 'Default' in the header
for row in reader:
columns.append(row[ind])

关于python - 在 csv 中搜索字符串并保存该列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17367464/

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