2015-04-04 17:05:30 -04:00
|
|
|
# test builtin divmod
|
|
|
|
|
|
|
|
print(divmod(0, 2))
|
|
|
|
print(divmod(3, 4))
|
|
|
|
print(divmod(20, 3))
|
|
|
|
|
|
|
|
try:
|
|
|
|
divmod(1, 0)
|
|
|
|
except ZeroDivisionError:
|
|
|
|
print("ZeroDivisionError")
|
|
|
|
|
2015-10-01 17:48:48 -04:00
|
|
|
try:
|
|
|
|
divmod(1 << 65, 0)
|
|
|
|
except ZeroDivisionError:
|
|
|
|
print("ZeroDivisionError")
|
|
|
|
|
2015-04-04 17:05:30 -04:00
|
|
|
try:
|
|
|
|
divmod('a', 'b')
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
2015-06-13 17:40:50 -04:00
|
|
|
# bignum
|
|
|
|
l = (1 << 65) + 123
|
|
|
|
print(divmod(3, l))
|
|
|
|
print(divmod(l, 5))
|
|
|
|
print(divmod(l + 3, l))
|
|
|
|
print(divmod(l * 20, l + 2))
|