I am new to Python csv.reader
and I am trying to populate the data in sheet2
with the headers in sheet1
:
sheet1.csv contains the following headers
1 2 3 4 5 6 7
sheet2.csv contains the following data
col_1 col_4 col_5 col_7
yellow Blue Green Red
The desired output is as follows:
1 2 3 4 5 6 7
Yellow Blue Green Red
Originally I have done this using pandas
however I would like to do this using csv.reader
in python.
This is my attempt so far:
import csv
with open('sheet1.csv', newline='') as myFile:
reader = csv.reader(myFile)
for row in reader:
print(row)
I know I've answered this before but am too lazy to go look for the original post.
[mre] version:
with actual files version:
output: