Open In App

Python-Quizzes | Python String Quiz | Question 19

Like Article
Like
Save
Share
Report

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


Last Updated : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads