猿问

如何计算Python中字符串中子字符串出现的次数?

我正在尝试编写一个代码片段,请求用户输入一个 strings然后输入一个 substring ss。ss然后程序必须计算in出现的次数s。例如,如果用户输入s = ‘azcbobobegghakl’and ss = ‘bob’,则程序应打印: Number of times bob comes is: 2。


到目前为止,这是我的代码:


def count(s,ss):

    Occurrence = 0

    if ss in s :

        for ss in s :

            Occurrence += 1

    return Occurrence 


#Main program : 

    

s = str(input("Choose a string: "))

    

ss = str(input("Choose a substring:")) 

    

print ("Number of times " + str(ss) + " occurs is : " + str(count(s,ss)) ) 

我想要的输出是这样的:


Choose a string: hellohel

Choose a substring:hel

Number of times hel occurs is : 2

但我得到的是这个:


Choose a string: hellohel

Choose a substring:hel

Number of times hel occurs is : 8

那么有人可以帮我修改这段代码以提供所需的输出吗?提前致谢


梦里花落0921
浏览 107回答 2
2回答

呼唤远方

您可以使用countprint("hellohel".count("hel"))2如果你想计算重叠的发生次数......也许这可以帮助def countOverlapping(string, item):    count = 0    for i in range(0,len(string)):        if item in string[i:len(item)+i]:            count += 1    return countprint(countOverlapping("ehehe", "ehe"))输出应该是...2这是如何运作的?它使用了他所谓的滑动窗口方法我们获取子字符串的长度,并在每次迭代时检查它是否在字符串的“窗口”中:is ehe in [ehe]he? yes, count += 1is ehe in e[heh]e? no, passis ehe in eh[ehe]? yes, count += 1

凤凰求蛊

您需要采用滑动窗口方法来获取字符串中子字符串的计数。例子:字符串:“嘿嘿嘿”子串:“呃”从前 3 个(因为子字符串的长度为 3)字母“ehe”开始 - 这是我们要查找的子字符串吗?- 是的。现在留下第一个字母“e”并将字母“he”与下一个字母“h”组合起来形成“heh”,这是我们要寻找的子字符串吗?- 不现在留下第一个字母“h”并将字母“eh”与下一个字母“e”组合起来形成“ehe”,这是我们正在寻找的子字符串吗?是的执行到字符串末尾并计算“yes”的数量
随时随地看视频慕课网APP

相关分类

Python
我要回答