Dictionary get: default value : Dictionary get « Dictionary « Python






Dictionary get: default value

Dictionary get: default value
branch = {'spam': 1.25,
           'ham':  1.99,
           'eggs': 0.99}

print branch.get('spam', 'Bad choice')

print branch.get('bacon', 'Bad choice')

           
       








Related examples in the same category

1.Dictionary: Get value by keyDictionary: Get value by key
2.Dictionary get valueDictionary get value