Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Find Quotes by logicalladybuglifestyle
def find_quotes(a):
return [i for idx, i in enumerate(a.split('"')) if idx % 2 == 1]
March 29, 2020