builtin_float_round_intbig.py 108 B

1234
  1. # test round() with floats that return large integers
  2. for x in (-1e25, 1e25):
  3. print('%.3g' % round(x))