我正在尝试解析一个csv文件,并仅从特定列中提取数据。
范例csv:
ID | Name | Address | City | State | Zip | Phone | OPEID | IPEDS |
10 | C... | 130 W.. | Mo.. | AL... | 3.. | 334.. | 01023 | 10063 |
我想只捕获特定的列,说ID
,Name
,Zip
和Phone
。
我看过的代码使我相信我可以通过其对应的编号来调用特定的列,即:Name
将使用对应2
并遍历每一行将row[2]
产生列2中的所有项。只有这样,它才不会。
到目前为止,这是我所做的:
import sys, argparse, csv
from settings import *
# command arguments
parser = argparse.ArgumentParser(description='csv to postgres',\
fromfile_prefix_chars="@" )
parser.add_argument('file', help='csv file to import', action='store')
args = parser.parse_args()
csv_file = args.file
# open csv file
with open(csv_file, 'rb') as csvfile:
# get number of columns
for line in csvfile.readlines():
array = line.split(',')
first_item = array[0]
num_columns = len(array)
csvfile.seek(0)
reader = csv.reader(csvfile, delimiter=' ')
included_cols = [1, 2, 6, 7]
for row in reader:
content = list(row[i] for i in included_cols)
print content
并且我希望这只会打印出我想要的每一行的特定列,除非不是,我只会得到最后一列。
"rb"
适合传递给csv.reader
。
'rb'
标记open()
?不应该很简单r
吗?