在Python中,数学模块包含许多数学运算,可以使用该模块轻松执行。math.floor()
函数返回不大于x的最大整数。如果number已经是整数,则返回相同的数字。
用法: math.floor(x) 参数: x: This is a numeric expression. 返回: largest integer not greater than x.
代码1:
# Python code to demonstrate the working of floor()
# importing "math" for mathematical operations
import math
x = 33.7
# returning the floor of 33.7
print ("The floor of 33.7 is:", end ="")
print (math.floor(x))
输出:
The floor of 33.7 is:33
代码2:
# Python code to demonstrate the working of floor()
# importing "math" for mathematical operations
import math
# prints the floor using floor() method
print ("math.floor(-13.1):", math.floor(-13.1))
print ("math.floor(101.96):", math.floor(101.96))
输出:
math.floor(-13.1): -14 math.floor(101.96): 101
相关用法
- Python now()用法及代码示例
- Python cmp()用法及代码示例
- Python map()用法及代码示例
- Python ord()用法及代码示例
- Python int()用法及代码示例
- Python dir()用法及代码示例
- Python hex()用法及代码示例
- Python sum()用法及代码示例
- Python tell()用法及代码示例
- Python id()用法及代码示例
- Python oct()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | math.floor() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。