I have a csv file, showing below:
I am trying to create column for each title and also trying to create columns for each type of genre_and_votes so that the output is something like below :

My code is given below:
import pandas as pd
df = pd.read_csv("C:\\Users\\mysite\\Desktop\\practice\\book1.csv")
#print(df)
print(df['Title'].values,df['genre_and_votes'].values)
Now for the code above, it creates a df but not be able to create coulmns for each genre and votes, I am not sure how to do this now, need help.
