计算子字符串在Python中的字符串中出现的次数

时间:2018-04-15 00:49:00

标签: python python-3.x for-loop while-loop

我是Python新手。我很震惊这个测验。它应该使用whilefor循环。 这是一个测验问题:

假设s是一个小写字符串。

编写一个程序,打印字符串'bob'出现在s中的次数。例如,如果s ='azcbobobegghakl',那么您的程序应该打印

bob发生的次数是:2

这是我的代码。

count = 0
string = 'bob'
strings = s.find(string)

for i in s:
    if strings != -1:
    count = count + 1
print(count)

感谢您的帮助!

0 个答案:

没有答案