Open In App

Python-Quizzes | Python String Quiz | Question 19

Question 19: What is the output of the following program?




a = "This is a string"
print(a.count("i"))

(A) 1
(B) 2
(C) 3
(D) 4

Answer: (C)
Explanation: The count() method returns the number of match from the string.
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :