Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#The try block does not raise any errors, so the else block is executed: try: print("Hello") except: print("Something went wrong") else: print("Nothing went wrong")
Hello
Nothing went wrong