Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
find_quotes solution in Clear category for Find Quotes by dannedved
def find_quotes(a):
return [word for i, word in enumerate(a.split('"')) if i % 2]
April 9, 2020