I was just re-reading What’s New In Python 3.0 and it states:
The round() function rounding strategy and return type have changed. Exact halfway cas
You can control the rounding you using the math.ceil module:
import math print(math.ceil(2.5)) > 3