Adding new files
This commit is contained in:
9
household funds.py
Normal file
9
household funds.py
Normal 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)
|
||||
Reference in New Issue
Block a user