Elementary | Middle
Middle | High
AI
Click on one of our programs below to get started coding in the sandbox!
View All
Programming constructs that can be used to gracefully handle exceptions so that a program can continue in spite of them. ``` try: quotient = 11/0 except ZeroDivisionError: print "You cannot divide by Zero!" ```