365 Days of Python: Day #68 — Football Fanatics

Rick Deckard
Jan 23, 2023

Football fans might be crazier than the players themselves.

Day #68 (1/21/2023)

“If winning isn’t everything, why do they keep score?”

— Vince Lombardi

Accomplishments

  • Wrote the user_input() function for my PotW (see below)
def user_input():
global input_value

try:
input_value = float(input("Enter the value that you would like to convert from {} to {}:\n".format(input_units, output_units)))
except:
print("ERROR: INVALID INPUT\n")
user_input()

Weekly Goals

  • Write a program that converts between imperial and metric units (25%)

Closing Thoughts

I consider myself a somewhat intense football fan; however, I would never go as far as dressing up like some superfans do.

--

--