How can you make copy of a list using
(a) copy()
Answer:
Code:
import copy
list1 = [
12
,
1
,
3
,
4
,
12
,
8
,
9
,
12
]
list2=copy.copy(list1)
Learn in your speed, with individual attention - Teachoo Maths 1-on-1 Class