can a dictionary add to a dictionary?
I have two dictionaries with the same key.
A = {"function":"try","args":tuple(),"size":1}
B = {"function":"test","args":tuple(),"size":2}
I don't want to struct the dict as this one
C = {key1 = {"function":"try","args":tuple(),"size":1}, key2= {"function":"test","args":tuple(),"size":2}}
since I want to combine them to the same dictionary as this
C = {{"function":"try","args":tuple(),"size":1},{"function":"test","args":tuple(),"size":2}}
How can I remove the key1 and key2, it is possible to do that? many thanks.