How can you make copy of a list using
(b) slicing
Answer:
Code:
list1 = [
12
,
1
,
3
,
4
,
12
,
8
,
9
,
12
]
list2=list1[:]