1 2 3 4 5 6 7 8 9 10 11 12 13
# test builtin type print(type(int)) try: type() except TypeError: print('TypeError') try: type(1, 2) except TypeError: print('TypeError')