Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 28, 2019 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/a6f20114746052cf50d316a4af23d115 to your computer and use it in GitHub Desktop.
Save codecademydev/a6f20114746052cf50d316a4af23d115 to your computer and use it in GitHub Desktop.
Codecademy export
def max_key(my_dictionary):
for key, value in my_dictionary.items():
if value == max(my_dictionary.values()):
return key
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment