Google News
logo
Python - Interview Questions
What are the different methods to copy an object in Python?
There are two ways to copy objects in Python.
 
copy.copy() function :
* It makes a copy of the file from source to destination.
* It’ll return a shallow copy of the parameter.

copy.deepcopy() function :
* It also produces the copy of an object from the source to destination.
* It’ll return a deep copy of the parameter that you can pass to the function.
Advertisement