Last active
August 29, 2015 14:05
-
-
Save eloyz/00196285cc0eedeb85e5 to your computer and use it in GitHub Desktop.
Function that tests if all values in dictionary are a None type object
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 is_none(d): | |
"""Returns True if dictionary contains | |
all None type objects | |
""" | |
for i in d.itervalues(): | |
if i is not None: | |
return False | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment