write a function occurrences(text_1,text_2) which retus the number of times the first argument appears in the second argument.
def occurrence(text_1,text_2): WHAT NEEDS TO BE HERE TO COMPARED STRINGS AND OUTPUT THE NO. OF TIME TEXT_2 OCCURS IN TEXT_1
