1
1
Fork 0
PythonLearning/division/main.py

26 lines
703 B
Python
Raw Normal View History

# ANSI color codes
2024-04-29 19:00:23 -05:00
BLUE = "\033[34m" # Blue
RED = "\033[31m" # Red
GREEN = "\033[32m" # Green
RESET = "\033[0m" # Reset to default color
2024-04-29 19:00:23 -05:00
def divide(x: float, y: float) -> float | None:
try:
2024-04-29 19:00:23 -05:00
x = float(x)
y = float(y)
except ValueError:
2024-04-29 19:00:23 -05:00
return print(f"{RED}You cannot divide by strings!{RESET}")
if y == 0:
return print(f"{RED}You cannot divide by 0!{RESET}") # you don't divide by zero
return float(x / y)
if __name__ == "__main__":
2024-04-29 19:00:23 -05:00
x = input(f"{BLUE}Input a number to divide:{RESET} ")
y = input(f"{BLUE}Input a number to divide by:{RESET} ")
result = divide(x, y)
if result is not None:
print(f"{GREEN}{result}{RESET}")