Login
Remember
Register
Ask a Question
How we can copy an object in Python?
0
votes
asked
Jun 11, 2020
in
Python
by
Robindeniel
How we can copy an object in Python?
#python-object-copy
#copy-object-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 11, 2020
by
SakshiSharma
In Python, we can use try copy.copy () or copy.deepcopy() for copy an object.
...