I have two CSV files, and I want to combine them in one file. My first CSV file is called vector_train.csv and the second is label_train.csv
vector_train.csv
v1,v2,v3,v100
12,32,15,30
55,72,45,90
label_train.csv
sentence,label
bad voice,0
good voice,1
I want the output like this
vector_train.csv
v1,v2,v3,v100,label
12,32,15,30,0
55,72,45,90,1
please help me