fork(1) download
  1. # your code goes here
  2. import re
  3.  
  4. print(re.match(r'\w', 'ç'))
  5. print(re.match(r'\w', 'ç', flags = re.UNICODE))
Success #stdin #stdout 0.01s 23296KB
stdin
Standard input is empty
stdout
None
<_sre.SRE_Match object at 0x2aeea0d745e0>