码迷,mamicode.com
首页 > 其他好文 > 详细

string 方法

时间:2018-05-23 19:04:31      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ring   string   span   bsp   字符   code   put   char   letters   

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import string
s = raw_input(请输入一个字符串:\n)
letters = 0
space = 0
digit = 0
others = 0
for c in s:
    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)

 

string 方法

标签:ring   string   span   bsp   字符   code   put   char   letters   

原文地址:https://www.cnblogs.com/kakaisgood/p/9078273.html

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