Question: 
Write a function to extract values between quotation marks of the given string by using regex.


Model's Code:
import re

def extract_quotation(s):
    return re.findall(r'"(.*?)"', s)



Sample Correct Code:
import re
def extract_quotation(text1):
  return (re.findall(r'"(.*?)"', text1))


Asserts:
assert extract_quotation('Cortex "A53" Based "multi" tasking "Processor"') == ['A53', 'multi', 'Processor']
assert extract_quotation('Cast your "favorite" entertainment "apps"') == ['favorite', 'apps']
assert extract_quotation('Watch content "4k Ultra HD" resolution with "HDR 10" Support') == ['4k Ultra HD', 'HDR 10']


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 725 of 974: 547/725 (75.44827586206897%): success