Answers for "how to get count of string in python"

1

python find string count in str

message = 'python is popular programming language'

# number of occurrence of 'p'
print('Number of occurrence of p:', message.count('p'))

>>> Number of occurrence of p: 4
Posted by: Guest on September-11-2021

Code answers related to "how to get count of string in python"

Python Answers by Framework

Browse Popular Code Answers by Language