这篇教程Python3 hypot() 函数写得很实用,希望能帮到您。 描述 hypot() 返回欧几里德范数 sqrt(x*x + y*y)。 语法以下是 hypot() 方法的语法: import mathmath.hypot(x, y) 注意:hypot()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。 参数返回值返回欧几里德范数 sqrt(x*x + y*y)。 实例以下展示了使用 hypot() 方法的实例: #!/usr/bin/python3import mathprint ("hypot(3, 2) : ", math.hypot(3, 2))print ("hypot(-3, 3) : ", math.hypot(-3, 3))print ("hypot(0, 2) : ", math.hypot(0, 2)) 以上实例运行后输出结果为: hypot(3, 2) : 3.605551275463989hypot(-3, 3) : 4.242640687119285hypot(0, 2) : 2.0 Python3 cos() 函数 Python3 sin() 函数 |