csc-python-solutions/08/2 - Substring Counting.py

9 lines
178 B
Python
Raw Permalink Normal View History

2021-02-18 09:23:16 +00:00
needle = input()
haystack = input()
x = 0
for i in range(len(haystack)-len(needle) + 1):
if haystack[:len(needle)] == needle:
x += 1
haystack = haystack[1:]
print(x)