带有Python示例的math.floor()方法

Python math.floor()方法 (Python math.floor() method)

math.floor() method is a library method of math module, it is used to get the floor value of a given number, it is used to get the floor value of a number, it accepts a number/numeric expression and returns largest integer (integral) value, which is not greater than the number.

math.floor()方法数学模块的库方法,用于获取给定数字的下限值,用于获取数字的下限值,它接受数字/数值表达式并返回最大整数(整数)值,该值不大于数字。

Note: It is useful with the float values if the number is an integer value – it returns the same value.

注意:如果数字是整数值,则对于浮点值很有用–它返回相同的值。

Syntax of math.floor() method:

math.floor()方法的语法:

    math.floor(n)

Parameter(s): n – a number or numeric expression.

参数: n-数字或数字表达式。

Return value: int – it returns an integer value – which is largest integer value of given number but not greater than the n.

返回值: int –返回整数值,该整数值是给定数字的最大整数值,但不大于n 。

Example:

例:

    Input:
    n = 10.23

    # function call
    print(math.floor(n))

    Output:
    10

Python代码查找给定数字的底值 (Python code to find floor value of a given number)

# Python code to find floor value of a given number
# importing math
import math

# number
n1 = 10.23
n2 = 10.67
n3 = 10
n4 = -10.23
n5 = 0

# printing floor values
print("floor(n1): ", math.floor(n1))
print("floor(n2): ", math.floor(n2))
print("floor(n3): ", math.floor(n3))
print("floor(n4): ", math.floor(n4))
print("floor(n5): ", math.floor(n5))

Output

输出量

floor(n1):  10
floor(n2):  10
floor(n3):  10
floor(n4):  -11
floor(n5):  0


翻译自: https://www.includehelp.com/python/math-floor-method-with-example.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值