You are viewing a single comment's thread. Return to all comments →
def count_substring(string, sub_string): count = 0 start = 0
while True: start = string.find(sub_string, start) if start == -1: break count += 1 start += 1 return count
if name == 'main': string = input().strip() sub_string = input().strip()
count = count_substring(string, sub_string) print(count)
Seems like cookies are disabled on this browser, please enable them to open this website
Find a string
You are viewing a single comment's thread. Return to all comments →
def count_substring(string, sub_string): count = 0 start = 0
if name == 'main': string = input().strip() sub_string = input().strip()