python代码统计字符串中大写字符小写字符特殊字符以及数值字符出现的次数
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python代码统计字符串中大写字符小写字符特殊字符以及数值字符出现的次数相关的知识,希望对你有一定的参考价值。
python代码统计字符串中大写字符、小写字符、特殊字符以及数值字符出现的次数
#python代码统计字符串中大写字符、小写字符、特殊字符以及数值字符出现的次数
import re
string = "Life is like a box of Chocalate,666,!!@#$"
# Creating separate lists using
# the re.findall() method.
uppercase_characters = re.findall(r"[A-Z]", string)
lowercase_characters = re.findall(r"[a-z]", string)
numerical_characters = re.findall(r"[0-9]", string)
special_characters = re.findall(r"[, .!?]", string)
print("The no. of upp
以上是关于python代码统计字符串中大写字符小写字符特殊字符以及数值字符出现的次数的主要内容,如果未能解决你的问题,请参考以下文章