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 text = 'Contact Emil at emil@example.com or Tobias at tobias@test.com' emails = re.findall(r'\S+@\S+', text) print(emails)
['emil@example.com', 'tobias@test.com']