On Windows 7 Python 3.2, the following:
print(int(math.ceil(24/10)))
gives me a "3" as expected.
On Windows Server with Active Python 2.5, it gives me a "2".
What is the problem and how can I solve it?
Here is my original code:
number_of_pages = int(math.ceil(number_of_rows/number_of_rows_per_page))
Thanks,
Barry
source share