The .copy()
method of a Python dictionary returns a copy of the dictionary. It takes no arguments.
Syntax
dictionary.copy()
Codebyte Example
The following example creates a dictionary, creates a copy of the dictionary, then adds new elements to the copy.
Code Output