python不使用s.count(),判断字符串的空格个数。
2021-01-22 00:13
阅读:582
标签:put bsp color python 判断字符串 nbsp input pytho rac python不使用s.count(),判断字符串的空格个数。 标签:put bsp color python 判断字符串 nbsp input pytho rac 原文地址:https://www.cnblogs.com/touch-prc/p/12892700.html
"""
任意输入一个字符串,判断这个字符串中有几个空格(不使用s.count())
"""
CharacterString = input("请输入一段字符串:")
count = 0 # 空格计数器
for tra in CharacterString:
#如果tra等于空格 count就加1
if tra == ‘ ‘:
count+=1
print("空格的个数是:"+str(count))
上一篇:JVM03——四种垃圾回收算法
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python不使用s.count(),判断字符串的空格个数。
文章链接:http://soscw.com/index.php/essay/45197.html
文章标题:python不使用s.count(),判断字符串的空格个数。
文章链接:http://soscw.com/index.php/essay/45197.html
评论
亲,登录后才可以留言!