Python3 数字Number Hypot Function Python3 数字Number Cos Function Python3 数字Number Sin Function Python3 数字Number Hypot Function #!/usr/bin/python3 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)) Python3 数字Number Cos Function Python3 数字Number Sin Function