1. 程式人生 > >計算字串中有多少個整數

計算字串中有多少個整數

  • 計算使用者輸入內容中有多少個整數(以個位數為單位)
content = input('請輸入一段內容:').strip()  # 對輸入的內容進行去空格操作  雖然沒啥必要
count = 0  # 使用count來對出現次數計數
for i in content:  # 對字串進行遍歷
    if i.isdigit():  # 判斷字串是否為數字
        count += 1
print(f'{content}中出現了{count}次整數')