📜  查找字符串hackereank - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:30.051000             🧑  作者: Mango

代码示例1
def count_substring(string, sub_string):
    count=0  #initialise count variable
    for i in range(0,len(string)):
        if string[i:].startswith(sub_string): # basically it traverses from left to right and looks for occurence of substring
            count+=1 #every time count will increase by 1

    return count