Please enable JavaScript to use CodeHS

CodeHS Glossary


Try and Except Python

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!"