what I am trying to do: Create and print a list of words for which the reverse of the word is in the set of lower-case words. For example, "timer" and its reverse, "remit", are both in the lower-case word list.
what i have so far:
s = set(lowers)
[word for word in s if list(word).reverse() in s]
i just get an empty list.
list('orange').reverse()and found that it returnsNone.