Tuesday, 16 January 2024

python not operator, test list and dict is empty


https://stackoverflow.com/questions/23177439/how-to-check-if-a-dictionary-is-empty

 test_dict = {}


if not test_dict:
    print "Dict is Empty"


if not bool(test_dict):
    print "Dict is Empty"


if len(test_dict) == 0:
    print "Dict is Empty"

No comments:

Post a Comment