我是 Python 新手csv.reader
,我正在尝试sheet2
使用以下标题填充数据sheet1
:
sheet1.csv包含以下标题
1 2 3 4 5 6 7
sheet2.csv包含以下数据
col_1 col_4 col_5 col_7
yellow Blue Green Red
所需的输出如下:
1 2 3 4 5 6 7
Yellow Blue Green Red
最初我已经使用pandas
但是我想csv.reader
在 python 中执行此操作。
这是我迄今为止的尝试:
import csv
with open('sheet1.csv', newline='') as myFile:
reader = csv.reader(myFile)
for row in reader:
print(row)