I have a dict with basic data (approximately): {'UID': 'A12B4', 'name': 'John', 'email': 'hi@example.com}
and I have another dict, for example: {'UID': 'A12B4', 'other_thing: 'cats'}
I don’t understand how to “join” two speakers, then put “other_thing” in the main dict. I need:{'UID': 'A12B4', 'name': 'John', 'email': 'hi@example.com, 'other_thing': 'cats'}
I am new to such insights, but my opinion says that there should be a direct path.
source
share