Answers for "string count() 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
0

count string python

#printing the number of characters in  a string
print(len("String you want to count"))

#counting characters in a variable
a = "some string"
print(len(a))
Posted by: Guest on January-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language