Computer Science

Write a program to count the number of times a character occurs in the given string.

Python

Python String Manipulation

65 Likes

Answer

str = input("Enter the string: ")
ch = input("Enter the character to count: ");
c = str.count(ch)
print(ch, "occurs", c, "times")

Output

Enter the string: KnowledgeBoat
Enter the character to count: e
e occurs 2 times

Answered By

25 Likes


Related Questions