Afraid this might be a duplicate but I've tried the other answers and they do not work for me
bin1 = {'05':175, '10':185, '15':195}
bin2 = {'05':174, '10':184, '15':194}
and I want this:
binList = ({'05':175, '10':185, '15':195},{'05':174, '10':184, '15':194})
I have tried .append and .update - neither works for me
binList = bin1.update(bin2)
doesnt give anything (ie, nothing happens) and
binList = bin1.append(bin2)
errors with 'AttributeError: 'dict' object has no attribute 'append'
I suspect I just dont know enough about syntax