Python math.hypot() 函数

返回上一级

Python math.hypot(x,y) 函数返回欧几里德范数 sqrt(xx + yy)

导入模块

import math

语法

math.hypot(x, y)

参数

参数 说明
x 一个数值
y 一个数值

返回值

返回欧几里德范数 sqrt(xx + yy)

范例

下面的代码使用 math.hypot() 函数求欧几里德范数

>>> import math
>>> math.hypot(3,4)
5.0
>>> math.hypot(3,2)
3.605551275463989
>>> math.hypot(-3,3)
4.242640687119285
>>> math.hypot(0,2)
2.0

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.