Activity 12.11.1.
Create a function called
greeting_search that takes in a list of strings, lst, as a parameter and returns True if the list has βGood Morning!β in it and False otherwise. For example, greeting_search(["Hello!", "Good Morning!", "good morning!"]) should return True.

