Created
August 11, 2019 18:40
-
-
Save MrAmbiG/dc3363823f713a2b5229d84c711f2f78 to your computer and use it in GitHub Desktop.
test gist for a project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment