10 lines
177 B
Python
10 lines
177 B
Python
household_funds = 100000
|
|
|
|
def check_wealth(funds):
|
|
if funds > 50000:
|
|
print("High Net Worth")
|
|
else:
|
|
print("Low Net Worth")
|
|
|
|
check_wealth(household_funds)
|