⌨️ Python Tip.
Normally we use Square brackets to access a dictionary value using it's key.
Normally we use Square brackets to access a dictionary value using it's key.
To perform the above operation we can also make use of python get method, which returns None if the input key is not part of given dictionary.
This will save you from run time error (KeyError) if the key is not found and also you don't need to do extra coding to deal with unidentified keys.