how to count how many times a word starts with a character python code example
Example: 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)