365 Days of Python: Day #56 — Alluring Art
2 min readJan 11, 2023
Art has a funny way of grabbing onto you and pulling you into another world. And a piece of art that can take hold of you with such fervent might have no effect on someone else.
That is what makes art so alluring. Your opinion on it is a direct reflection of your own likes and interests.
Do you enjoy straight lines and geometric patterns? Check out Josef Albers.
Do you like chaos? Check out Jackson Pollock.
Do you appreciate the beauty of nature? Check out Claude Monet.
Day #56 (1/9/2023)
“Everything has its beauty, but not everyone sees it.”
— Andy Warhol
Accomplishments
- Added a
user_profile()
function to my PotW (see below)
def user_profile():
clear()
user_net_monthly_income()
user_spending_habits()
print("Calculating your monthly budget...\n")
time.sleep(1)
monthly_budget_calculator()
- Wrote the
monthly_budget_calculator()
function for my PotW (see below)
def monthly_budget_calculator():
clear()
housing = net_monthly_income * (0.25)
food = net_monthly_income * (0.15)
savings = net_monthly_income * (0.25 +…