count characters in string python
>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4
count characters in string python
>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4
pyton count number of character in a word
# Count number of characters in a string (word)
a = "some string"
print len(a) # 11
Python program to count all characters in a sentence
#Python program count all characters in a text
root = "..\\Desktop\\text.txt"
file = open(root, 'rt', encoding="utf-8")
data = file.read()
counter = data.count('a')+data.count('A')+data.count('b')+data.count('B')+data.count('c')+data.count('C')+data.count('d')+data.count('D')+data.count('e')+data.count('E')+data.count('f')+data.count('F')+data.count('g')+data.count('G')+data.count('h')+data.count('H')+data.count('i')+data.count('I')+data.count('g')+data.count('G')+data.count('k')+data.count('K')+data.count('l')+data.count('L')+data.count('m')+data.count('M')+data.count('n')+data.count('N')+data.count('o')+data.count('O')+data.count('p')+data.count('P')+data.count('q')+data.count('q')+data.count('r')+data.count('R')+data.count('s')+data.count('S')+data.count('t')+data.count('T')+data.count('u')+data.count('U')+data.count('v')+data.count('V')+data.count('w')+data.count('W')+data.count('x')+data.count('X')+data.count('y')+data.count('Y')+data.count('z')+data.count('Z')
print(counter)
#684004
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us