python不使用s.count(),判断字符串的空格个数。

2021-01-22 00:13

阅读:582

标签:put   bsp   color   python   判断字符串   nbsp   input   pytho   rac   

"""
    任意输入一个字符串,判断这个字符串中有几个空格(不使用s.count())
"""
CharacterString = input("请输入一段字符串:")

count = 0 # 空格计数器
for tra in CharacterString:
    #如果tra等于空格 count就加1
    if tra ==  :
        count+=1
print("空格的个数是:"+str(count))

 

python不使用s.count(),判断字符串的空格个数。

标签:put   bsp   color   python   判断字符串   nbsp   input   pytho   rac   

原文地址:https://www.cnblogs.com/touch-prc/p/12892700.html


评论


亲,登录后才可以留言!