ceil, floor, frexp, modf, exp : Math : Buildin Module PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Module » Math »

 

ceil, floor, frexp, modf, exp


import math
x = 2.5
print math.floor(x)
print math.ceil(x)
print math.sqrt(x)
print math.frexp(x)
print math.modf(x)

print math.pi
print math.e



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Module
» Math