Python 数字Number hypot() 方法 Python 数字Number cos() 方法 Python 数字Number sin() 方法 Python 数字Number hypot() 方法 #!/usr/bin/python import math print "hypot(3, 2) : ", math.hypot(3, 2) print "hypot(-3, 3) : ", math.hypot(-3, 3) print "hypot(0, 2) : ", math.hypot(0, 2) Python 数字Number cos() 方法 Python 数字Number sin() 方法