The syntax of setdefault() is:
dict.setdefault(key[, default_value])
setdefault() Parameters
setdefault() takes a maximum of two parameters:
- key - the key to be searched in the dictionary
- default_value (optional) - key with a value default_value is inserted to the dictionary if the key is not in the dictionary.
If not provided, the default_value will beNone.
Return Value from setdefault()
setdefault() returns:
- value of the key if it is in the dictionary
- None if the key is not in the dictionary and default_value is not specified
- default_value if key is not in the dictionary and default_value is specified
Example 1: How setdefault() works when key is in the dictionary?
Output
person = {'name': 'Phill', 'age': 22}
Age = 22
Example 2: How setdefault() works when key is not in the dictionary?
Output
person = {'name': 'Phill', 'salary': None}
salary = None
person = {'name': 'Phill', 'age': 22, 'salary': None}
age = 22