当前位置:首页>维修大全>综合>

python编程功能 输入自定义的字符串 利用函数计算传入字符串中的数字 字母 空格和其他的个数(python如何计算字符串里字母数量)

python编程功能 输入自定义的字符串 利用函数计算传入字符串中的数字 字母 空格和其他的个数(python如何计算字符串里字母数量)

更新时间:2024-01-17 11:11:47

python编程功能 输入自定义的字符串 利用函数计算传入字符串中的数字 字母 空格和其他的个数

defcount_str(strs): int_count,str_count,spa_count,other_count = 0,0,0,0

for i in strs: # 遍历字符串

if i.isdigit(): # 判断是否为数字

int_count += 1

elif i.isalnum(): # 判断是否为字母

str_count += 1

elif i.isspace(): # 判断是否为空格

spa_count += 1

else:

other_count +=1

print("字符串s中,数字个数={},字母个数={},空格个数={},其他个数={}".format(int_count,str_count,spa_count,other_count))

if __name__ == "__main__":

strs = input("请输入字符串s:")

count_str(strs)

更多栏目