2014-11-29 14:47:54 +00:00
|
|
|
# test round() with floats
|
|
|
|
|
|
|
|
# check basic cases
|
|
|
|
tests = [
|
2020-03-23 02:26:08 +00:00
|
|
|
[0.0],
|
|
|
|
[1.0],
|
|
|
|
[0.1],
|
|
|
|
[-0.1],
|
|
|
|
[123.4],
|
|
|
|
[123.6],
|
|
|
|
[-123.4],
|
|
|
|
[-123.6],
|
|
|
|
[1.234567, 5],
|
|
|
|
[1.23456, 1],
|
|
|
|
[1.23456, 0],
|
|
|
|
[1234.56, -2],
|
2014-11-29 14:47:54 +00:00
|
|
|
]
|
|
|
|
for t in tests:
|
2015-07-14 12:44:31 +00:00
|
|
|
print(round(*t))
|
2014-11-29 14:47:54 +00:00
|
|
|
|
|
|
|
# check .5 cases
|
|
|
|
for i in range(11):
|
|
|
|
print(round((i - 5) / 2))
|
2015-04-04 21:05:30 +00:00
|
|
|
|
|
|
|
# test second arg
|
2016-12-20 03:01:10 +00:00
|
|
|
for i in range(-1, 3):
|
|
|
|
print(round(1.47, i))
|
2017-03-23 23:56:02 +00:00
|
|
|
|
|
|
|
# test inf and nan
|
2020-03-23 02:26:08 +00:00
|
|
|
for val in (float("inf"), float("nan")):
|
2017-03-23 23:56:02 +00:00
|
|
|
try:
|
|
|
|
round(val)
|
|
|
|
except (ValueError, OverflowError) as e:
|
|
|
|
print(type(e))
|