I have a problem where I got a csv data like this:
AgeGroup           Where do you hear our company from?       How long have you using our platform?
18-24              Word of mouth; Supermarket Product        0-1 years
36-50              Social Media; Word of mouth               1-2 years
18-24              Advertisement                             +4 years
and I tried to make the file into this format through either jupyter notebook or from excel csv:
AgeGroup           Where do you hear our company from?
18-24              Word of mouth                             0-1 years
18-24              Supermarket Product                       0-1 years
36-50              Social Media                              1-2 years
36-50              Word of mouth                             1-2 years
18-24              Advertisement                             +4 years
Let's say the csv file is Untitled form.csv and I import the data to jupyter notebook:
data = pd.read_csv('Untitled form.csv')
Can anyone tell me how should I do it?
I have tried doing it in excel csv using data-column but of course, they only separate the data into column while what I wanted is the data is separated into a row while still pertain the data from other column
 
     
     
    