I just got a csv file that I want to load the dataset as dataframe using pandas. However, I'm kinda confused this data format.
Here is the sample of data for two lines:
Name=John, Gender=M, BloodType=A, Location=New York, Age=18
Name=Mary, Gender=F, BloodType=AB, Location=Seatle, Age=30
How do I load this dataset into dataframe with columns (Name, Gender, BloodType,...etc)?
I will appreciate that someone gives me tips to start with!