美文网首页
python sort()函数

python sort()函数

作者: 以我丶之姓 | 来源:发表于2019-04-26 10:43 被阅读0次

    sqrt() 方法,返回数字x的平方根

    import math
    math.sqrt(x)
    

    注意:sqrt()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
    for example:

    #! /usr/bin/python
    import math
    print "math.sqrt(100): " , math.sqrt(100)
    print "math.sqrt(7)", math.sqrt(7)
    print "math.sqrt(math.pi): ", math.sqrt(math.pi)
    

    相关文章

      网友评论

          本文标题:python sort()函数

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