Answers for "count \t in string python"

2

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

Python Answers by Framework

Browse Popular Code Answers by Language