>>> dic = {'a': ['1a','2a','3a'],'b': ['1b','2b'], 'a' : ['4a','5a']}
It has same keys 'a'
and I want to get all values from this dic
but when I use
>>> dic.get('a')
It only returns
['4a','5a']
How can I get all 'a' key's values from it?
I have thought to using repetitive statement to check all keys, but it seems inefficient