第三方包:numpy
安装
$ sudo dnf install numpy
4舍6入5取偶
def getInteger():
a = np.float(5.5)
# 4舍6入 5取偶
int_a = int(np.round(a))
print(int_a)
if __name__ == '__main__':
getInteger()
结果为6
Posted 屋中人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python数据取整相关的知识,希望对你有一定的参考价值。
安装
$ sudo dnf install numpy
def getInteger():
a = np.float(5.5)
# 4舍6入 5取偶
int_a = int(np.round(a))
print(int_a)
if __name__ == '__main__':
getInteger()
结果为6
以上是关于python数据取整的主要内容,如果未能解决你的问题,请参考以下文章