Login and get codingIn this Bite you learn how to lookup values from a dictionary or in Python:
dict
.You are presented with
WORKOUT_SCHEDULE dict
(constant) with keys = days and values = workouts (or rest up). Completeget_workout_motd
that receives a day string, title case it so the function can receive case insensitive days, look it up in the dict and do two things:
- If the day (key) is not in the dictionary, return
INVALID_DAY
, we don't want this function to continue.- If the key is in the dictionary, return
CHILL_OUT
orTRAIN
depending if it's aREST
day or not. The latter you will need to string-interpolate usingformat
.Also check out the docstring and tests. Have fun and keep calm and code in Python!
Update 25th of Nov 2019: previously this Bite required re-raising the
KeyError
, but as that's already the default behavior of a missing key in a dict, we changed the requirements to return a value instead.
2691 out of 2787 users completed this Bite.
Will you be the 2692nd person to crack this Bite?
Resolution time: ~33 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 3.71 on a 1-10 difficulty scale.
» You can do it! 😌