Initial commit

This commit is contained in:
2025-12-29 01:22:55 -05:00
commit 9135150f6d
9 changed files with 84 additions and 0 deletions

9
household funds.py Normal file
View File

@@ -0,0 +1,9 @@
household_funds = 100000
def check_wealth(funds):
if funds > 50000:
print("High Net Worth")
else:
print("Low Net Worth")
check_wealth(household_funds)