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
class MyCtx: def __enter__(self): print("Enter") return "res" def __exit__(self, exc_type, exc, tb): print("Exit") with MyCtx() as res: print("Using", res)
Enter Using res Exit