math ceil python code example

Example 1: python floor

import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4

Example 2: ceil function in python

import math
print(math.ceil(5.3))
output = 6

Example 3: pi python

# import built in math module
import math

# Showing usage of pi function
print(math.pi)

Example 4: ceil function in python

import math
print(math.floor(5.3))
output = 6

Example 5: python ceil

def ceil(k,b):
  return b-k%b+k

print(ceil(5,10)) # Prints: 10
print(ceil(7.32,1.829)) # Prints: 9.145