输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

#!/usr/bin/python
# -*- coding: UTF-8 -*-importstring
sraw_input('input a string:\n')
letters0
space0
digit0
others0
forcins:
    ifc.isalpha():
        letters1
    elifc.isspace():
        space1
    elifc.isdigit():
        digit1
    else:
        others1
print'char = %d,space = %d,digit = %d,others = %d'(letters,space,digit,othe

Python 判断字符属于数字、字母、空格的方法:

字符 c.isalpha()

空格 c.isspace()

数字 c.isdigit()