Count String Occurrences in Python

  • Post category:String

In this article, you will see how to count string occurrences in Python. The easiest way to count the occurrences of a substring in a string is to use the count() method. The count() method returns the number of occurrences of a substring in the given string.

Step 1: Create a string

str = "CodeAllow"
print("str = ", str)
print("str type = ", type(str))

Step 2: Count string occurrences

print("Occurrences = ", str.count("o"))

Output:

str =  CodeAllow
str type =  <class 'str'>
Occurrences =  2

Free resources to learn advanced skills: AiHints and CodeAllow