Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import re txt = "�land" #Find all UNICODE matches: print(re.findall("\w", txt, re.UNICODE)) #Same result using the shorthand re.U flag: print(re.findall("\w", txt, re.U))
['�', 'l', 'a', 'n', 'd']
['�', 'l', 'a', 'n', 'd']