DEV Community

Paurakh Sharma Humagain
Paurakh Sharma Humagain

Posted on

Beginner Python tips Day - 02 dict.get()

# Day-02 dict .get()

my_dict = {'hello': 'world'}

try:
    my_dict['world']
    # Throws KeyError exception
except KeyError:
    print('Cannot find the provided key in the dictionary')

# Use .get() to be safe from the exception
print(my_dict.get('world'))
# prints None in the console

# You can pass second argument as default value
print(my_dict.get('world', 'default value'))
# prints 'default value'

Oldest comments (2)

Collapse
 
thijs0x57 profile image
thijs0x57

I like it, very short and simple but clear. Thanks!

Collapse
 
paurakhsharma profile image
Paurakh Sharma Humagain

I am glad you liked it ☺️