3 lines
49 B
Python
3 lines
49 B
Python
def hypotenuse(a, b):
|
|
return (a**2+b**2)**0.5
|
def hypotenuse(a, b):
|
|
return (a**2+b**2)**0.5
|