abs(x)绝对值函数就是|x|。该函数将负数中的负号去掉并保持其他部分不变。
int函数将保持整数不变,并将浮点数通过丢弃小数部分转换为整数。
round(n,r)函数的结果是四舍五入保留数值n的小数点的后r位,参数r可以省略,在这种情况下,n将四舍五入为整数。当数字n是两个相邻整数的中间值(例如1.5,2.5,3.5和4.5)时,round函数将返回与其最为接近的偶数。例如round(2.5)的结果是2,round(3.5)的结果是4。
部分例子如下:
表达式 | 值 | 表达式 | 值 | 表达式 | 值 |
---|---|---|---|---|---|
abs(3) | 3 | int(2.7) | 2 | round(2.7) | 3 |
abs(0) | 0 | int(3) | 3 | round(2.3712,2) | 2.32 |
abs(-3) | 3 | int(-2.7) | -2 | round(2,371,1) | 2.3 |
来源:CSDN
作者:NitefullSand
链接:https://blog.csdn.net/NitefullSand/article/details/52974086