1.

B) Mylist - (10, 20, 30, 40, 50, 60, 70, 80, 90, 100) write the Python commands for the following based on above list. a)to print alements in listb)Find listength-c)Add multiple elements (110, 120, 130)d)) Delete from fourth element to seventh clemente) Delete entire listpls answer fastly​

Answer» TION:L=[10,20,30,40,50,60,70,80,90,100]a)print(L)C)L.insert(110,120,130) print(L)or L1=[110,120,130]L=[10,20,30,40,50,60,70,80,90,100]L.extend(L)E)L.clear() print(l)Please mark it as brainliest


Discussion

No Comment Found