I have scrapped some contents from a web site and saved the data into some different csv files.
For example,
csv1:-
row number time price
1 2018/01/01 12
2 2018/01/02 15
csv2:-
row number time address
1 2018/01/01 MI
2 2018/01/02 AR
Now, how can I Merge the two csv files into one csv file and below is the format of new csv.
row number time price address
1 2018/01/01 12 MI
2 2018/01/02 15 AR
Can someone help me?
This question has confused me several days.
Thanks a lot!