Question-130: When you run below program, what would happen or printed
listA= [1,2,3,4,5]
del listA[1:10]
print(listA)
- [1,2,3,4,5]
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Answer: D
Exp:
Deleting list element using slice
- If you want to delete some continuous elements from a list then you can use slice with del.
- Even using slice and del you can clean all the elements from the list.
listA= [1,2,3,4,5]
#Delete first 3 elements from list del listA[:3] print(listA)
#Now list has only 2 elements. #This will delete 2nd element only del listA[1:10] print(listA)
#Re-create list You can access to full explanation to question and answer from this page. |