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
python count characters
# Basic syntax:
import re
len(re.findall('[characters]', your_string))
# Example usage:
# say you want to count all G, g, C, or c characters in the following DNA seq
len(re.findall('[GgCc]', "ACGTGCAcgattcgatCGCTAGCTAG"))
--> 14
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