# your code goes here
import re

print(re.match(r'\w', 'ç'))
print(re.match(r'\w', 'ç', flags = re.UNICODE))