Python dictionary is collection of key value pairs. Value associated with a certain key is returned by get() method.
>>> D1={'a':11,'b':22,'c':33}
>>> D1.get('b')
22You can also obtain value by using key inside square brackets.
>>> D1['c'] 33
Python dictionary is collection of key value pairs. Value associated with a certain key is returned by get() method.
>>> D1={'a':11,'b':22,'c':33}
>>> D1.get('b')
22You can also obtain value by using key inside square brackets.
>>> D1['c'] 33