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
#use a dictionary with ascii codes to replace 83 (S) with 80 (P): mydict = {83: 80} txt = "Hello Sam!" print(txt.translate(mydict))
Hello Pam!