Write a program to demonstrate the three different ways of copying a list.

 

Answer:

Code:

import copy 

list1=[ 'red' , 'green' , 'blue' , 'yellow' , 'orange'

 

#method 1 

list2= list1 

print (list2) 

 

#method 2 

list3=copy.copy(list1) 

print(list3) 

 

#method 3 

list4=list1[:] 

print(list4)

 

[Lists Class 11] Write a program to demonstrate three different ways - Long Answer Type Questions (5 Marks each)

Remove Ads
Teachoo · Class 11 Explore Class 11
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh is an IIT Kanpur graduate and has been teaching for 16+ years. At Teachoo, he breaks down Maths, Science and Computer Science into simple steps so students understand concepts deeply and score with confidence.

Many students prefer Teachoo Black for a smooth, ad-free learning experience.