橘子味的心
标题:Python3 数字Number Hypot 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))

目录

分类