number of occurrences of a substring in a string in python code example

Example 1: count in python string

string.count(substring, start, end)
# Start and end is optional

Example 2: string count substring occurences pytohn

string.count(substring, [start_index], [end_index])

Example 3: count in python

it counts the number of elements in the list or in the string(words)

Example 4: count substring in string python

def count_substring(string,sub_string):
    l=len(sub_string)
    count=0
    for i in range(len(string)-len(sub_string)+1):
        if(string[i:i+len(sub_string)] == sub_string ):      
            count+=1
    return count