Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Clear category for Find Quotes by Stensen
find_quotes= lambda a: __import__('re').findall('"([^"]*)"', a) if '"' in a else []
Sept. 23, 2020
Comments: