python输入一字符统计其中有多少个单_python如何统计字符串中字母个数?

方法:首先用“str_count = 0”定义字母的字符初始个数为0;接着遍历字符串,判断字符串内各字符的类型,并将字母个数累加;最后用“print(‘字母 = %d’ %(str_count))”输出字母个数结果即可。

python统计字符串中字母个数

给一个字符串,统计其中的数字、字母和其他类型字符的个数;

例如:输入“254h!%he”,输出:数字=3,字母=3,其他=2

方法:

①首先用“str_count = 0”定义字母的字符初始个数为0

②接着遍历字符串,判断字符串内各字符的类型,并将字母个数累加;

③最后用“print(‘字母 = %d’ %(str_count))”输出字母个数结果即可。

数字初始个数int_count = 0

字母初始个数str_count = 0

其他字符初始个数other_count = 0

输入字符串a = input(‘please input a str\n’)

遍历字符串for i in a:

# 判断是否为数字

if i.isdigit():

int_count += 1

# 判断是否为字母

elif i.isalnum():

str_count += 1

# 判断为其他字符

else:

other_count += 1

print(‘数字 = %d, 字母 = %d,其他 = %d’ %( int_count ,str_count,other_count))

推荐教程:《python教程》

你可能感兴趣的:(python输入一字符统计其中有多少个单_python如何统计字符串中字母个数?)