You are viewing a single comment's thread. Return to all comments →
def count_substring(string, sub_string): count = 0 while sub_string in string : find = string.find(sub_string) string = string[find+1:] count += 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 while sub_string in string : find = string.find(sub_string) string = string[find+1:] count += 1 return count
if name == 'main': string = input().strip() sub_string = input().strip()