Python math.floor() 函数

返回上一级

Python math.floor() 函数返回数字的下舍整数,俗称地板流取整

导入模块

import math

语法

math.floor( x )

参数

参数 说明
x 数值表达式

返回值

数字的下舍整数

范例

下面的代码使用 math.floor() 函数给一些数值向下取整

>>> import math
>>> math.floor(-46.0)
-46.0
>>> math.floor(100.12)
100.0
>>> math.floor(119L)
119.0
>>> math.floor(math.pi)
3.0

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.