Python函数-round() 函数

round( x [, n]  )功能:     round() 方法返回浮点数x的四舍五入值。 x-数值表达式。n-数值表达式。返回浮点数x的四舍五入值。

实例:
1 #!/usr/bin/python
2
3 print "round(80.23456, 2) : ", round(80.23456, 2)
4 print "round(100.000056, 3) : ", round(100.000056, 3)
5 print "round(-100.000056, 3) : ", round(-100.000056, 3)

结果:

round(80.23456, 2) :  80.23
round(100.000056, 3) :  100.0
round(-100.000056, 3) :  -100.0
 
时间: 2024-11-08 23:31:06

Python函数-round() 函数的相关文章

Python的round()函数与数学的四舍五入的区别

print(round(0.5))>>0 print(round(1.5))>>2 print(round(2.5))>>2 整数部分为偶 小数为0.5 向下取整 0也是偶数整数部分为奇 小数为0.5 向上取整 print(round(5.123,2)) 保留两位小数>>5.12 math.ceil 向上取整math.floor 向下取整 原文地址:https://www.cnblogs.com/Gdavid/p/11744023.html

SQL-W3School-函数:SQL ROUND() 函数

ylbtech-SQL-W3School-函数:SQL ROUND() 函数 1.返回顶部 1. ROUND() 函数 ROUND 函数用于把数值字段舍入为指定的小数位数. SQL ROUND() 语法 SELECT ROUND(column_name,decimals) FROM table_name 参数 描述 column_name 必需.要舍入的字段. decimals 必需.规定要返回的小数位数. SQL ROUND() 实例 我们拥有下面这个 "Products" 表: P

[Python] round函数

在Python中,round函数对小数进行四舍五入的截断. 然而: >>> round(3.55, 1) 3.5 官方文档对于函数的解释是: Unfortunately, most decimal fractions cannot be represented exactly as binary fractions. A consequence is that, in general, the decimal floating-point numbers you enter are on

Python内置函数(55)——round

英文文档: round(number[, ndigits]) Return the floating point value number rounded to ndigits digits after the decimal point. If ndigits is omitted, it returns the nearest integer to its input. Delegates to number.__round__(ndigits). For the built-in type

python基础之函数

python 函数 函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段. 函数能提高应用的模块性,和代码的重复利用率.你已经知道Python提供了许多内建函数,比如print().但你也可以自己创建函数,这被叫做用户自定义函数. 定义一个函数 在Python中,定义一个函数要使用def语句,依次写出函数名.括号.括号中的参数和冒号:,然后,在缩进块中编写函数体,函数的返回值用return语句返回. 函数式编程和面向过程编程的区别: 函数式:将某功能代码封装到函数中,日后便无需重复编

Python内置函数_数学运算类

本文和大家分享的主要是python内置函数数据运算类相关内容,一起来看看吧,希望对大家学习python 有所帮助. abs abs(x) 求绝对值 · X可以是整型,也可以是复数 · 若X是复数,则返回复数的模 >>> abs(-1)1>>> abs(-3+4j)5.0>>> bin bin(x) 将整数x转换为二进制字符串 >>> bin(2)'0b10'>>> bin(3)'0b11' bool bool([x]

python内置函数(1)

做了几道题,复习一下python的内置函数. python round() 函数 函数描述 round()函数返回浮点数x的四舍五入值 语法 round(x[, n]) 用法实例:浮点数x=3.1415926,用round()函数使x显示小数点后两位 print (round(x, 2)) 运行结果 3.14 多写一点 在使用round()函数的时候,有时候运行出的结果和自己想的不一样,比如: >>>round(2.25, 1) 2.2 >>>round(2.35, 1

Python补充--Python内置函数清单

Python内置函数 Python内置(built-in)函数随着python解释器的运行而创建.在Python的程序中,你可以随时调用这些函数,不需要定义.最常见的内置函数是: print("Hello World!") 在Python教程中,我们已经提到下面一些内置函数:基本数据类型 type()反过头来看看 dir()   help()    len()词典 len()文本文件的输入输出 open()循环设计 range()   enumerate()    zip()循环对象

python基础9 -----python内置函数2

一.python内置所以函数     Built-in Functions     abs() divmod() input() open() staticmethod() all() enumerate() int() ord() str() any() eval() isinstance() pow() sum() basestring() execfile() issubclass() print() super() bin() file() iter() property() tuple