Python-round函数
round函数:对给定的数进⾏四舍五⼊,只有⼀个参数的情况下,是将其四舍五⼊后为整型,第⼆个参数是保留⼏位⼩数1 a = round(2.523456)
2print(a)
3print('a的类型',type(a))
4 b =round(2.523456,1)
5print(b)
6print('b的类型',type(b))
7 c =round(2.523456,2)
8print(c)
9print('c的类型',type(c))
结果:
3
a的类型 <class 'int'>
2.5
b的类型 <class 'float'>
2.52
c的类型 <class 'float'>
>python trunc函数
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论