Answers for "how to count substring in a string in python"

9

count in python string

string.count(substring, start, end)
# Start and end is optional
Posted by: Guest on September-19-2020
0

how to count substring in a string in python

count = string.count(substring)
Posted by: Guest on March-18-2021
-2

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
Posted by: Guest on October-14-2020

Code answers related to "how to count substring in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language