Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. Python 3.7.3 (default, Mar 27 2019, 22:11:17)
  2. [GCC 7.3.0] :: Anaconda, Inc. on linux
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> round(0.5)
  5. 0
  6. >>> round(1.5)
  7. 2
  8. >>> round(2.5)
  9. 2
  10. >>> round(3.5)
  11. 4
  12. >>> round(4.5)
  13. 4
  14. >>> round(5.5)
  15. 6
  16. >>> round(6.5)
  17. 6
  18. >>> round(100.5)
  19. 100
  20. >>> round(101.5)
  21. 102
  22. >>> round(102.5)
  23. 102
  24. >>> round(103.5)
  25. 104
  26. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement