CBSE Class 12 Computer Science
Question 56 of 105
Python Revision Tour II — Question 5
Back to all questionslistA = [8, 9, 10]
- listA[1] = 17
- listA.extend([4, 5, 6])
- listA.pop(0)
- listA.sort()
- listA = listA * 2
- listA.insert(3, 25)
listA = [8, 9, 10]