todp...@hotmail.com wrote:
How can you make python round numbers to the nearest 5:
Example: 3 => 0
8 => 10
23.2 => 20
36 => 35
51.5 => 50
Divide by 5, round the result, then multiply by 5.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to