x = round(6.5)
y = round(5.5)
print(x)
print(y)
The result of both x and y happens to be 6. I am aware of the round function rounding exact half numbers to closest even integer to get more accurate data in statistics and stuff like that. So is there any way you can round of exact half integers to the closest "greater" integer instead of closest "even" integer without many errors