zoukankan      html  css  js  c++  java
  • python中取整的几种方法

    #encoding:utf-8
    import math

    #向上取整
    print "math.ceil---"
    print "math.ceil(2.3) => ", math.ceil(2.3)
    print "math.ceil(2.6) => ", math.ceil(2.6)

    #向下取整
    print " math.floor---"
    print "math.floor(2.3) => ", math.floor(2.3)
    print "math.floor(2.6) => ", math.floor(2.6)

    #四舍五入
    print " round---"
    print "round(2.3) => ", round(2.3)
    print "round(2.6) => ", round(2.6)

    #这三个的返回结果都是浮点型
    print " NOTE:every result is type of float"
    print "math.ceil(2) => ", math.ceil(2)
    print "math.floor(2) => ", math.floor(2)
    print "round(2) => ", round(2)

    返回如下:

  • 相关阅读:
    分治
    #include<algorithm>
    c++标准模板库的使用
    mysql_day03
    mysql_day02
    mysql_day01
    mongodb的安装
    迭代器和生成器简单介绍
    File文件操作
    数据类型
  • 原文地址:https://www.cnblogs.com/VseYoung/p/python_numbers.html
Copyright © 2011-2022 走看看