avatar Bite 143. Look up a value in 3 dictionaries

In this Bite you are presented with 3 dictionaries. Complete get_person_age that takes a name as argument and returns the age if in any of the 3 dictionaries. The lookup should be case insensitive, so tim, Tim and tiM should all yield 30. If not in any of the dictionaries, return Not found.

Note that some persons are in 2 of the 3 dictionaries. In that case return the age of the last dictionaries (so group3 takes precedence over group2 and group2 takes precedence over group1). Check out the standard library ... :) - have fun!

Login and get coding
go back Beginner level
Bitecoin 2X

432 out of 433 users completed this Bite.
Will you be Pythonista #433 to crack this Bite?
Resolution time: ~29 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 3.36 on a 1-10 difficulty scale.
» You can do it! 😌

Focus on this Bite hiding sidebars, turn on Focus Mode.

Ask for Help