I have dataframe df that has 3 columns
RowID Col1 Col2
--------------------
1 Cat Dog
2 Bird Red
3 Vic Nile
4 Drive Job
5 NIce BB
I want to have a 4th column called CSV
df["CSV"] = df["RowID"] + "," + df["Col1"] + "," + df["Col2"]
but this is not working
how to do that to get my dataframe look like this
RowID Col1 Col2 CSV
-------------------------
1 Cat Dog 1,Cat,Dog
2 Bird Red 2,Bird,Red
3 Vic Nile 3,Vic,Nile
4 Drive Job 4,Drive,Job
5 NIce BB 5,NIce,BB