Count Number of Occurrences of a Substring in a Given String using Python

count method

text = '123 456 12 123'
count = text.count('123')

print(count)  # 2

Leave a Comment

Cancel reply

Your email address will not be published.