Python: dict() function
dict() function
The dict() function is used to create a new dictionary.
Read more about dictionaries from Python Dictionaries and Python Exercises.
Version:
(Python 3)
Syntax:
dict(**kwarg) dict(mapping, **kwarg) dict(iterable, **kwarg)
Example: Create Dictionary Using keyword arguments only
Output:
num = {'b': 0, 'a': 10}empty = {}
Example: Create Dictionary Using Iterable
Output:
num1 = {'a': 3, 'b': -3} num2 = {'a': 3, 'c': 5, 'b': -3} num3 = {'a': 2, 'c': 4, 'b': 3}
Example: Create Dictionary Using Mapping
Output:
num1 = {'a': 3, 'b': 4} num2 = {'a': 5, 'b': 6} num3 = {'c': 9, 'a': 7, 'b': 8}
Python Code Editor:
Previous: delattr()
Next: dir()
Test your Python skills with w3resource's quiz
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics