Q. To insert 5 to the third position in list1, we use which command? (Solved)
1. list1.insert(3, 5)
2. list1.insert(2, 5)
3. list1.add(3, 5)
4. list1.append(3, 5)
- b. list1.insert(2, 5)
1. list1.insert(3, 5)
2. list1.insert(2, 5)
3. list1.add(3, 5)
4. list1.append(3, 5)