''' We can use try and except to continue running code even if we come across an error. ''' try: var = 0 / 0 # Runs into error except ZeroDivisionError as e: print(e) # Prints the error # ADD ANY OTHER CODE YOU WANT TO EXECUTE