I want to round numbers using python, but round(1.45, 1) is returning 1.4 whereas using normal rounding rules the answer should be 1.5.
How can I change this behaviour?
I want to round numbers using python, but round(1.45, 1) is returning 1.4 whereas using normal rounding rules the answer should be 1.5.
How can I change this behaviour?