Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Find Quotes by Cyrus490
def find_quotes(a):
b = a.split("\"")
return (b)[1::2] if len(b) > 1 else []
if __name__ == '__main__':
print("Example:")
print(find_quotes('"Greetings"'))
Aug. 12, 2020