Question: Complete the find_string(sentence, string_to_find) function that takes two string parameters, namely sentence and string_to_find. This function should return the number of times that the parameter,
Complete the find_string(sentence, string_to_find) function that takes two string parameters, namely sentence and string_to_find. This function should return the number of times that the parameter, string_to_find, appears in the sentence. For example: Test Result print(find_string("Funny people like to have Fun", "Fun")) 2 print(find_string("The road to success is always under construction.", "boat"))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
