Python - Exception Handling Fundamentals
You want to write a function that tries to convert a string to an integer and then divide 100 by that number. It should handle ValueError if conversion fails, ZeroDivisionError if division by zero happens, and print "Success" if no error occurs, and print "Done" regardless of errors. Which code correctly implements this?
