首页 > 编程语言 > 详细

Python统计字符串中的中英文字符、数字空格,特殊字符

时间:2018-01-21 10:12:58      阅读:347      评论:0      收藏:0      [点我收藏+]

 

 

# -*- coding:utf8 -*-
import string
from collections import namedtuple

def str_count(s):
    ‘‘‘找出字符串中的中英文、空格、数字、标点符号个数‘‘‘
    count_en = count_dg = count_sp = count_zh = count_pu = 0

    s_len = len(s)
    for c in s:
        # 英文
        if c in string.ascii_letters:
            count_en += 1
        # 数字
        elif c.isdigit():
            count_dg += 1
        # 空格
        elif c.isspace():
            count_sp += 1
        # 中文
        elif c.isalpha():
            count_zh += 1
        # 特殊字符
        else:
            count_pu += 1

    total_chars = count_zh + count_en + count_sp + count_dg + count_pu
    if total_chars == s_len:
        return namedtuple(Count, [total, zh, en, space, digit, punc])(s_len, count_zh, count_en,count_sp, count_dg, count_pu)
    else:
        print(Something is wrong!)
        return None

if __name__ == __main__:
    str_l = "这是一个test字符串"
    count = str_count(str_l)
    print(str_l, end=\n\n)
    print(该字符串共有 {} 个字符,其中有 {} 个汉字,{} 个英文,{} 个空格,{} 个数字,{} 个标点符号。.format(count.total, count.zh, count.en, count.space,
                                                                           count.digit, count.punc))

 

Python统计字符串中的中英文字符、数字空格,特殊字符

原文:https://www.cnblogs.com/zihe/p/8323508.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!