In python I can define dictionary as:
d = {}
and store data as:
d['a1'] = 1
How to store 2 keys?
d['a1']['b1'] = 1
d['a1']['b2'] = 2
d['a2']['b1'] = 3
d['a2']['b2'] = 4
and then print all keys and values for e.g. d['a1']
which would be:
b1 -> 1
b2 -> 2