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 #Replace all white-space characters with the digit "9": txt = "The rain in Spain" x = re.sub("\s", "9", txt) print(x)
The9rain9in9Spain