How to count all characters, digits and special symbols from a string in Python

1 Answer

0 votes
s = "jfd£$234S£FDs£$&*10@"

characterCount = 0
digitCount = 0
symbolCount = 0

for ch in s:
    if ch.islower() or ch.isupper():
      characterCount += 1
    elif ch.isnumeric():
      digitCount += 1
    else:
      symbolCount += 1
      
      
print("Characters = ", characterCount, "Digits = ", digitCount, "Symbols = ", symbolCount)
      


'''
run

Characters =  7 Digits =  5 Symbols =  8

'''

 



answered Apr 9, 2019 by avibootz
...