I have a CSV file that has a name and email column. My goal is to map a new column, which is to separate the column names into two columns, first names and last names. The following sample table.
Names, Email
aa bb, [email protected]
bb cc, [email protected]
cc dd, [email protected]
To be
First Name, Last Name, Email
aa, bb, [email protected]
bb, cc, [email protected]
cc, dd, [email protected]
honestly, I am currently only able to read files with Pandas, I have read a number of articles about mapping in Pandas, but I have not found the right one.
Thank you.