InterviewSolution
Saved Bookmarks
| 1. |
How Do I Copy An Object In Python? |
|
Answer» In GENERAL, try COPY.copy() or copy.deepcopy() for the general CASE. Not all objects can be COPIED, but most can. In general, try copy.copy() or copy.deepcopy() for the general case. Not all objects can be copied, but most can. |
|