1# test builtin divmod 2 3print(divmod(0, 2)) 4print(divmod(3, 4)) 5print(divmod(20, 3)) 6 7try: 8 divmod(1, 0) 9except ZeroDivisionError: 10 print("ZeroDivisionError") 11 12try: 13 divmod('a', 'b') 14except TypeError: 15 print("TypeError") 16