You are viewing a single comment's thread. Return to all comments →
def count_substring(string, sub_string):
count = 0 index = 0 while index < len(string): found_at = string.find(sub_string, index) if found_at == -1: break count += 1 index = found_at + 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):