py: Add builtin round function.

Addresses issue #934.
This commit is contained in:
Damien George
2014-10-31 11:28:50 +00:00
parent fa73c9cb25
commit 1559a97810
7 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
# test round()
# check basic cases
tests = [
False, True,
0, 1, -1, 10,
0.0, 1.0, 0.1, -0.1, 123.4, 123.6, -123.4, -123.6
]
for t in tests:
print(round(t))
# check .5 cases
for i in range(11):
print(round((i - 5) / 2))