2023-11-12|閱讀時間 ‧ 約 1 分鐘

用Python 數 字串有幾個字母

寫法 一

text=input("text: ")
count=0
for i in text:
if i.isalpha():
count=count+1
print(count)

寫法 二

text=input("text: ")
count=sum(1 for char in text if char.isalpha())
print(count)


分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.