Report Bug
Qus : To insert 5 to the third position in list1, we use which command?
Qusलिस्ट 1 में 5 से थर्ड पोज़िशन पर इन्सर्ट करने के लिए, हम किस कमांड का यूज़ करते हैं?

A. list1.insert(3, 5)
B. list1.insert(2, 5)
C. list1.add(3, 5)
D. list1.append(3, 5)


Solution
B. list1.insert(2, 5)



Explanation
Execute in the shell to verify.



Report Bug