Skip to content

Instantly share code, notes, and snippets.

@MrAmbiG
Created August 11, 2019 18:40
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 MrAmbiG/cf02a05d44c51fecb7067d9878fe77eb to your computer and use it in GitHub Desktop.
Save MrAmbiG/cf02a05d44c51fecb7067d9878fe77eb to your computer and use it in GitHub Desktop.
def uppercase(data):
'''takes a non nested dictionary and converts the values to uppercase'''
output = {}
for k, v in data.items():
output[k] = v.upper()
return output
@MrAmbiG
Copy link
Author

MrAmbiG commented Aug 11, 2019

test gist for a test project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment