Python Function Reference

dict
Create a new dictionary.
Python 3.13
dict(**kwargs)
Examples
Python 3.13
>>> dict(a=1, b=2)
{'a': 1, 'b': 2}