How to print a value for a given key for Python dictionary?



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')
22

You can also obtain value by using key inside square brackets.

>>> D1['c']
33
Updated on: 2020-02-26T11:22:05+05:30

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements