1
1
Fork 0

added ANSI color codes to hypotenuse
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 10s

This commit is contained in:
Seaswimmer 2024-05-08 12:18:03 -04:00
parent c55a25d874
commit 39b645e0eb
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -1,5 +1,10 @@
from math import sqrt
# ANSI color codes
BLUE = "\033[34m" # Blue
RED = "\033[31m" # Red
GREEN = "\033[32m" # Green
RESET = "\033[0m" # Reset to default color
def calculate_hypotenuse(x: float, y: float) -> float:
x = float(x)
@ -7,10 +12,10 @@ def calculate_hypotenuse(x: float, y: float) -> float:
return sqrt(x**2 + y**2)
if __name__ == "__main__":
x = input("Input your A: ")
y = input("Input your B: ")
x = input(f"{BLUE}Input your A:{RESET} ")
y = input(f"{BLUE}Input your B:{RESET} ")
try:
result = calculate_hypotenuse(x,y)
print(f"{round(result)} ({result})")
print(f"{GREEN}{round(result)} ({result}){RESET}")
except ValueError:
print("Error! Please do not input strings.")
print(f"{RED}Please do not input strings.{RESET}")