Substring Count |2| ~~~~~~~~~~~~~~~~~~~ Write a function called *substring_count* that takes two strings and returns how many times the second string occurs in the first one as an integer. Note that the overlapping occurrences should be counted as well (*see 3rd example in Sample I/O*). .. container:: sampleio Sample I/O: .. |2| image:: ../../figures/difficulty_three.png :class: difficulty .. code:: default Input: >>> substring_count("stanrandystancartmanstankenny","stan") 3 >>> substring_count("taktakatutakatakataktuk","ta") 5 >>> substring_count("ababa","aba") 2 .. raw:: html .. raw:: html