In python3 I have 2 lists:
listA = [{'aString': 'someone', 'aNumber': 123}]
listB = [{'anotherNumber': 456}]
How do I combine them into 1 single list which looks like this?
listC = [{'aString': 'someone', 'aNumber': 123, 'anotherNumber': 456}]
If I use,
listC = listA + listB
I get:
listC = [{'aString': 'someone', 'aNumber': 123}, {'anotherNumber': 456}]