For example, the standard division symbol \'/\' rounds to zero:
>>> 4 / 100 0
However, I want it to return 0.04. What do I use?
A simple route 4 / 100.0
or
4.0 / 100