python 读csv数据 通过改变分隔符去掉引号

import csv
with open(r'C:\Temp\ff.csv') as f:
    f_csv=csv.reader(f,delimiter='\t')
    headers=next(f_csv)
    print(headers)
    for row in f_csv:
        print(row)

 

posted @ 2019-02-21 17:59  筱筱的春天  阅读(4245)  评论(0编辑  收藏  举报