python sort()函数

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()函数)