0


python 用for 循环计算字符串中某个字符出现的次数

str = 'a-bc-12----3'
num = []
for n in str:
if n == '-':
num += n
continue
print(num.count('-'))

#或者
str = 'a-bc-12----3'
i = 0
for n in str:
if n == '-':
i += 1
continue
print(i)

标签: python

本文转载自: https://blog.csdn.net/sunny_eggg/article/details/121300777
版权归原作者 sunny_eggg 所有, 如有侵权,请联系我们删除。

“python 用for 循环计算字符串中某个字符出现的次数”的评论:

还没有评论