Answers for "python copy function"

4

python clone object

import copy

new_ob = copy.deepcopy(old_ob)
Posted by: Guest on December-29-2020
2

.copy python

new_list = list.copy()

# returns a new list without modifying the orginal list.
Posted by: Guest on January-31-2021
0

python copy list

a=[1,2,3,4]
b=a[:] 
''' now b has all elements of  a'''
Posted by: Guest on September-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language