1
1
Fork 0
PythonLearning/hypotenuse/main.py
SeaswimmerTheFsh a7581a0bf6
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 10s
hypotenuse
2024-05-08 10:41:01 -04:00

16 lines
381 B
Python

from math import sqrt
def calculate_hypotenuse(x: float, y: float) -> float:
x = float(x)
y = float(y)
return sqrt(x**2 + y**2)
if __name__ == "__main__":
x = input("Input your A: ")
y = input("Input your B: ")
try:
result = calculate_hypotenuse(x,y)
print(f"{round(result)} ({result})")
except ValueError:
print("Error! Please do not input strings.")