It's all about the output

Report a typo

What will be the output of the code below?

import re 

string = 'No regrets no regrets'
pattern = 'no regrets'
matches = re.match(pattern, string, re.IGNORECASE)
print(matches)
Select one option from the list
___

Create a free account to access the full topic