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”)



Explanation
Execute in the shell to verify.



Report Bug