summaryrefslogtreecommitdiff
path: root/scripts/money.py
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
commita504b63dfaa23ac6ba420942f71d859630c03e0e (patch)
tree9dff1f05c408fabfa5da7dcbfc5b901f14706af9 /scripts/money.py
parentc82d20316320d8584f0a9fa1218f0e73d1fc4530 (diff)
refactor!: Unused Programs Removed
Multiple unused programs have be removed. These programs were unmaintained, no longer functioning, and/or had no purpose anymore. BREAKING CHANGE: Multiple scripts removed
Diffstat (limited to 'scripts/money.py')
-rwxr-xr-xscripts/money.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/money.py b/scripts/money.py
deleted file mode 100755
index 4a36437..0000000
--- a/scripts/money.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/local/bin/python3
-
-hours = int(input("Enter Hours Worked Per Week: "))
-wage = float(input("Enter Wage: "))
-tax = .13
-
-checking = (hours * 4) * wage
-checking -= checking * tax
-savings = checking / 2
-checking -= savings
-
-miles = 830
-mpg = float(input("Enter Gas Milage: "))
-gasPrice = float(input("Enter Gas Price: "))
-
-gas = (miles / mpg) * gasPrice
-
-expenses = gas + 10
-
-checking -= expenses
-
-print(f"${checking+savings:,.2f} left over total\n${checking:,.2f} left over for checking each month\n${savings:,.2f} left over for savings each month\nCost of gas: ${gas:,.2f}")