Counting bobs

Assume s is a string of lower case characters.

Write a program that prints the number of times the string 'bob' occurs in s. For example, if s = 'azcbobobegghakl'
, then your program should print

Number of times bob occurs is: 2
s='azcbobobegghakl'
count = 0
while s:
    position = s.find('bob')
    if position!=-1:
        count+=1
    else:
        break
    s=s[position+1:]
print 'Number of times bob occurs is: '+str(count) 

全部评论

相关推荐

ResourceUtilization:四六级不愧是大学最有用的证之一
点赞 评论 收藏
分享
03-10 14:19
已编辑
重庆邮电大学 前端工程师
球Offer上岸👑:测试也难求一面 逆天
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务