Ceil and floor equivalent in Python 3 without Math module? September 16, 2023 by Tarik >>> 3/2 1.5 >>> 3//2 # floor 1 >>> -(-3//2) # ceil 2