I have a dict with main data (roughly) as such: {\'UID\': \'A12B4\', \'name\': \'John\', \'email\': \'hi@example.com}
{\'UID\': \'A12B4\', \'name\': \'John\', \'email\': \'hi@example.com}
and I have another dict like:
If you want to join dictionaries, there's a great built-in function you can call, called update.
update
Specifically:
test = {'A': 1} test.update({'B': 2}) test >>> {'A':1, 'B':2}