how to get values from dictionary in python code example
Example 1: get function in dictionary
print('Salary: ', person.get('salary', 0.0))
Example 2: python get value from dictionary
dict = {'color': 'blue', 'shape': 'square', 'perimeter':20}
dict.get('shape')
dict.get('volume', 'The key was not found')
Example 3: get a value from a dictionary python
dict = {'Name': 'Zabra', 'Age': 7}
print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Education', "Never")
Example 4: how to get value from key dict in python
dictionary = {1:"Bob", 2:"Alice", 3:"Jack"}
entry = dictionary[2]