1 2 3 4 5 6 7 8 9 10 11 12
# test the math functions that return ints, with very large results try: import math except ImportError: print("SKIP") import sys sys.exit() for fun in (math.ceil, math.floor, math.trunc): for x in (-1e25, 1e25): print('%.3g' % fun(x))