溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Python統(tǒng)計字符串中各種字符的個數(shù)

發(fā)布時間:2020-08-16 15:35:32 來源:ITPUB博客 閱讀:322 作者:千鋒Python唐小強 欄目:編程語言

Python 統(tǒng)計字符串中各種字符出現(xiàn)的次數(shù)

一、提出問題

隨機輸入一段字符串,包括數(shù)字,英文,空格,其他字符,統(tǒng)計這些字符在其中出現(xiàn)的次數(shù)

二、難點提示

思路:從鍵盤隨機輸入一段字符串,然后循環(huán)遍歷字符串,通過循環(huán)字符串中的每一個字符,統(tǒng)計各類字符出現(xiàn)的次數(shù)

循環(huán)遍歷字符串

  1. 判斷數(shù)字字符 —— 使用: isdigit() 方法
  2. 判斷空格 —— 使用: isspace() 方法
  3. 判斷英文單詞 —— 使用 isalpha() 方法

三、代碼實現(xiàn)

#求字符串中的各種字符個數(shù), 數(shù)字,英文單詞,空格,特殊字符

def count(str):
   num_number=char_number=space_number=other_number=0
   for i in str:
       if i.isdigit():#判斷數(shù)字
           num_number+=1
       elif i.isspace():#判斷空格
            space_number+=1
       elif i.isalpha():#判斷英文單詞
           char_number+=1
       else:
           other_number+=1
   print("英文字符有:{} 數(shù)字字符有:{} 空格有:{} 特殊字符有:{}".format(char_number,num_number,space_number,other_number))

if __name__ == '__main__':
   s = "123dsse  ,../n"
   count(s)
使用Python統(tǒng)計字符串中各種字符的個數(shù)
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI