hypot() 方法返回欧几里得范数,sqrt(x*x + y*y). 这是向量从原点到点(x,y)的长度
	
语法
		以下是 hypot()方法的语法:
	
hypot(x, y)
		注:此功能直接是无法访问的,所以我们需要导入 math 模块,然后我们需要用 math 静态对象调用这个函数。
	
	参数
- 
			x -- 这必须是一个数值 
- 
			y -- 这必须是一个数值 
返回值
hypot() 方法返回欧几里得范数, sqrt(x*x + y*y).
示例
		下面的示例说明 hypot()方法的使用。
	
#!/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))
	
		当我们运行上面的程序,它会产生以下结果:
	
hypot(3, 2) : 3.60555127546 hypot(-3, 3) : 4.24264068712 hypot(0, 2) : 2.0
