idk what we edited
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 12s
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:
parent
b84f62cb59
commit
4937c519fa
3 changed files with 13 additions and 6 deletions
5
division/README.md
Normal file
5
division/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Division
|
||||
|
||||
## 04/29/2024
|
||||
|
||||
wip
|
|
@ -4,6 +4,7 @@ RED = "\033[31m" # Red
|
|||
GREEN = "\033[32m" # Green
|
||||
RESET = "\033[0m" # Reset to default color
|
||||
|
||||
|
||||
def divide(x: float, y: float) -> float | None:
|
||||
try:
|
||||
x = float(x)
|
||||
|
@ -15,6 +16,7 @@ def divide(x: float, y: float) -> float | None:
|
|||
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} ")
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Online Store
|
||||
|
||||
## 04/29/2024
|
||||
## 04/26/2024
|
||||
|
||||
wip
|
||||
|
|
Loading…
Reference in a new issue