I want to make a program that will round up a float number like: 18.33333 to 18.5.
I tried math.ceil but It wont work like I expected.
import math
number1 = 18.3333
print(math.ceil(float(number1)))
I want it to be 18.5. But it turns out as 19.