Learn
count_multi_char_x()
Instructions
1.
Write a function named count_multi_char_x
that takes a string named word
and a string named x
. This function should do the same thing as the count_char_x
function you just wrote - it should return the number of times x
appears in word
. However, this time, make sure your function works when x
is multiple characters long.
For example, count_multi_char_x("Mississippi", "iss")
should return 2
Sign up to start coding
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.