So I have a list
myList1 = [["HELLO HOW ARE YOU", "IM GOOD THANKS"],
["Could you be quiet?","Okay I will be quiet"]]
I would like to know how I can convert every letter to lowercase so that I can run a search against the list to find common words, and then print it back out in original form. For example:
some code to convert list to lowercase
some code to search for a term
some code to convert list to original form
some code to print all matches
Because the code I have tried, only works for lists that don't contain more lists inside of them.!