So this is the situation: I have 2 lists and want to put them in a dictionary.
Content ['This is Sams Content', 'This is someone's else content']
Author ['Sam', 'Someone Else']
This is the dictionary I would like to create
Reviews [{'content': 'This is Sams Content', 'author' : 'Sam'} , {'content': 'This is someone's else content', 'author' : 'Someone Else'}
I hope you understand what the question is. Thanks for helping.