码迷,mamicode.com
首页 > 编程语言 > 详细

python练习程序(c100经典例17)

时间:2014-09-13 09:22:44      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   div   sp   log   on   c   

题目:

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

def foo(a):
    l=len(a);
    letters=0;
    space=0;
    digit=0;
    others=0;
    for i in range(0,l):
        num=ord(a[i])
        if num>=ord(a) and num<=ord(z) or num>=ord(A) and num<=ord(Z):
            letters=letters+1;
        elif num>=ord(0) and num<=ord(9):
            digit=digit+1;
        elif num==ord( ):
            space=space+1;
        else:
            others=others+1;
    print letters,space,digit,others
    
foo(sadfsa34564   ,.,.)
        

 

python练习程序(c100经典例17)

标签:style   blog   color   for   div   sp   log   on   c   

原文地址:http://www.cnblogs.com/verstin/p/3969473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!