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