I am in python and I have this:
places = [{'placeId':5},{'placeId':2}]
and this(note that the workout has a lot more data than 'To' and 'Exercise'.. I didnt wrote them all):
workout={'To': 'John' , 'Exercise': 'pull-ups'}
and I want to make this:
Emailwork={'To': 'John' , 'Exercise': 'pull-ups', 'places':[5,2]}
Can I have some help please?