Report Bug
Qus : To remove string "hello" from list1, we use which command ?
Qusलिस्ट 1 से स्ट्रिंग "हैलो" को हटाने के लिए, हम किस कमांड का उपयोग करते हैं?

A. list1.remove("hello")
B. list1.remove(hello)
C. list1.removeAll("hello")
D. list1.removeOne ("hello")


Solution
A. list1.remove("hello")






Report Bug