Python includes exercises 57

Copyright: All rights reserved Please indicate the link! https://blog.csdn.net/qq_43558971/article/details/91493958

Title: Enter the line of characters, respectively, the statistics of the number of letters, spaces, numbers and other characters in them.

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import string
s = raw_input('请输入一个字符串:\n')
letters = 0
space = 0
digit = 0
others = 0
i=0
while i < len(s):
    c = s[i]
    i += 1
    if c.isalpha():
        letters += 1
    elif c.isspace():
        space += 1
    elif c.isdigit():
        digit += 1
    else:
        others += 1
print 'char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,others)

Guess you like

Origin blog.csdn.net/qq_43558971/article/details/91493958