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