I'm new to Python and at the moment I'm writing a code. I need to round up some numbers after I have divided them like this.
n = 5
print(round(n/2))
Why is this showing 2 and not 3? It works on 7 and gives 4 but then on 9 it also gives 4 and not 5. What is wrong here?
Thanks in advance for the help!