美文网首页
Python基本数学计算

Python基本数学计算

作者: 逑熙 | 来源:发表于2017-09-08 21:46 被阅读13次
    向上取整、向下取整以及四舍五入函数
    import math
    
    f = 11.2
    print math.ceil(f) #向上取整
    print math.floor(f) #向下取整
    print round(f) #四舍五入
    
    #这三个函数的返回结果都是浮点型,需要int()转换
    

    result:

    12.0
    11.0
    11.0
    
    开方
    #!/usr/bin/python
    import math   #sqrt()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
    
    print "math.sqrt(100) : ", math.sqrt(100)
    print "math.sqrt(7) : ", math.sqrt(7)
    print "math.sqrt(math.pi) : ", math.sqrt(math.pi)
    
    #这三个函数的返回结果都是浮点型,需要int()转换
    

    result:

    math.sqrt(100) :  10.0
    math.sqrt(7) :  2.64575131106
    math.sqrt(math.pi) :  1.77245385091
    

    相关文章

      网友评论

          本文标题:Python基本数学计算

          本文链接:https://www.haomeiwen.com/subject/ynbnjxtx.html