方法:先用「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如何統計字串中字母個數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!