csc-python-solutions/11/c/1 - Hypothenuse.py

3 lines
49 B
Python
Raw Normal View History

2021-02-18 08:24:06 +00:00
def hypotenuse(a, b):
return (a**2+b**2)**0.5