1
1
Fork 0

idk what we edited
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 12s

Co-authored-by: seaswimmerthefsh@gmail.com <seaswimmerthefsh@gmail.com>
This commit is contained in:
EntropicDecay 2024-04-29 19:14:53 -05:00
parent b84f62cb59
commit 4937c519fa
3 changed files with 13 additions and 6 deletions

5
division/README.md Normal file
View file

@ -0,0 +1,5 @@
# Division
## 04/29/2024
wip

View file

@ -2,7 +2,8 @@
BLUE = "\033[34m" # Blue
RED = "\033[31m" # Red
GREEN = "\033[32m" # Green
RESET = "\033[0m" # Reset to default color
RESET = "\033[0m" # Reset to default color
def divide(x: float, y: float) -> float | None:
try:
@ -12,12 +13,13 @@ def divide(x: float, y: float) -> float | None:
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)
return print(f"{RED}You cannot divide by 0!{RESET}") # you don't divide by zero
return float(x / y)
if __name__ == "__main__":
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)
result = divide(x, y)
if result is not None:
print(f"{GREEN}{result}{RESET}")
print(f"{GREEN}{result}{RESET}")

View file

@ -1,5 +1,5 @@
# Online Store
## 04/29/2024
## 04/26/2024
wip