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

import sys
if __name__=="__main__":
    line=sys.stdin.readline()
    str=list(line)
    print str
    i=0
    wordCount=0
    spaceCount=0
    numCount=0
    otherCount=0
    while i

你可能感兴趣的:(面试)