Skip to content

Instantly share code, notes, and snippets.

@mbains
Created June 13, 2014 15:55
Show Gist options
  • Save mbains/20ac17b198b546822ddc to your computer and use it in GitHub Desktop.
Save mbains/20ac17b198b546822ddc to your computer and use it in GitHub Desktop.
write a python method to remove items from a dictionary based on the value
def removeByValue(d_dict, value_in):
''' delete item in d_dict where from value = value_in '''
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment