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 math try: print(math.exp(999)) except OverflowError: print("The number is too high") except: print("Something else went wrong")
The number is too high