Checkpoint 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
.