Report Bug
Qus : Which of the following methods is not a string method in Python?
Qus निम्नलिखित में से कौन सा मेथड पायथन में एक स्ट्रिंग मेथड नहीं है?

A. capitalize()
B. startswith()
C. pop()
D. find()


Solution
C. pop()



Explanation
<p>pop() function is used in List&nbsp;</p>



Report Bug