`math.floor`函数是 Python的math模块中的一个函数,用于返回小于或等于给定数字的最大整数,即对浮点数向下取整。
函数语法:
```python
math.floor(x)
```
参数:
`x`:一个浮点数,表示要向下取整的数值。
返回值:
返回小于或等于`x`的最大整数。
示例:
```python
import math
print(math.floor(45.95)) 输出:45
print(math.floor(45.05)) 输出:45
print(math.floor(4)) 输出:4
print(math.floor(-45.05)) 输出:-46
print(math.floor(-45.95)) 输出:-46
```
建议:
当需要对一个浮点数进行向下取整时,可以使用`math.floor`函数。
如果浮点数已经是整数,`math.floor`函数会返回该整数本身。