.fromkeys()
StevenSwiniarski466 total contributions
Published May 23, 2022
Contribute to Docs
The .fromkeys()
method returns a dictionary with a specified set of keys. It can also initialize the entries with a specified value.
Syntax
dict.fromkeys(keys,value)
Where keys
is an iterable containing the keys for the new dictionary and value
is an optional initial value for the new entries in the dictionary. If value
is not specified, the default initial value for each key will be None
.
Codebyte Example
The following example creates a new dictionary with an initial value for each key.
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.