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
#The finally block gets executed no matter if the try block raises any errors or not: try: print(x) except: print("Something went wrong") finally: print("The 'try except' is finished")
Something went wrong
The 'try except' is finished