# 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'
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
I like it, very short and simple but clear. Thanks!
I am glad you liked it ☺️