365 Days of Python: Day #82 — Wise Walks

Rick Deckard
1 min readFeb 6, 2023

According to the Mayo Clinic, some of the benefits of walking are as follows:

  • Improves cardiovascular fitness
  • Increases energy levels
  • Reduces stress
  • Strengthens the immune system
  • Helps maintain a healthy weight

Of course, walking is not the best exercise that you can do for each of the above benefits, but it is one of the easiest.

Day #82 (2/4/2023)

“Everywhere is walking distance if you have the time.”

— Steven Wright

Accomplishments

  • Wrote the password_show() function for my PotW (see below)
def password_show():
print("Password:\n{}".format(password))
  • Wrote the generate_again() function for my PotW (see below)
def generate_again():
again = input("\nWould you like to generate another password? (Y/N)\n").upper()

if again == "Y":
password_generator()
elif again == "N":
exit()
else:
print("ERROR: INVALID RESPONSE")
generate_again()

Weekly Goals

  • Write a program that generates random passwords (80%)

Closing Thoughts

I will admit that I do not go for walks on a daily basis. However, I do often force myself to walk instead of drive depending on the distance that I have to travel.

I encourage you to do the same the next time that you have to drive somewhere that is less than a mile away.

--

--