Answers for "how to count how many characters are in a string python"

6

count characters in string python

>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4
Posted by: Guest on December-30-2020
0

check how many letters in a string python

#use the built in function len()

len("hello")

#or you can count the characters in a string variable

a = "word"
len(a)
Posted by: Guest on April-09-2020

Code answers related to "how to count how many characters are in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language