Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to check if dictionary is empty or not? more specifically, my program starts with some key in dictionary and I have a loop which iterates till there are key in dictionary. Overall algo is like this:

Start with some key in dict
while there is key in dict
do some operation on first key in dict
remove first key

Please note that some operation in above loop may add new keys to dictionary. I've tried for key,value in d.iteritems()

but it is failing as during while loop some new key are added.

share|improve this question
1  
if dict should check for emptiness. – squiguy Nov 9 '12 at 16:37
What are you really trying to do? What is the algorithm for, what's in the dict? – Karl Knechtel Nov 9 '12 at 17:40

3 Answers

This will do it:

while d:
    k, v = d.popitem()
    # now use k and v ...

A dictionary in boolean context is False if empty, True otherwise.

There is no "first" item in a dictionary, because dictionaries aren't ordered. But popitem will remove and return some item for you each time.

share|improve this answer
Then how should I get first key in while loop? – username_4567 Nov 9 '12 at 16:33
actually main problem is when you add keys in inner operation then interpreter is throwing an error :dictionary changed size during iteration – username_4567 Nov 9 '12 at 16:37
That's a different problem. don't modify the object you're iterating over. What you need is a queue. – kreativitea Nov 9 '12 at 16:39
I've expanded my answer. While you can't modify an object you're iterating over, as @kreativitea says, and a queue is the right answer in some algorithms, a dictionary can be a fine choice when order doesn't matter. – Jamey Sharp Nov 9 '12 at 16:44
@JameySharp. Hey I didn't meant to hurt you. Sorry if I did by mistake. – Rohit Jain Nov 9 '12 at 16:44
show 1 more comment

As far as I know the for loop uses the iter function and you should not mess with a structure while iterating over it.

Does it have to be a dictionary? If you use a list something like this might work:

while len(my_list) > 0:
    #get last item from list
    key, value = my_list.pop()
    #do something with key and value
    #maybe
    my_list.append((key, value))

Note that my_list is a list of the tuple (key, value). The only disadvantage is that you cannot access by key.

EDIT: Nevermind, the answer above is mostly the same.

share|improve this answer

I would say that way is more pythonic and fits on line:

If you need to check value only with the use of your function:

if filter( your_function, dictionary.values() ): ...

When you need to know if your dict contains any keys:

if dictionary: ...

Anyway, using loops here is not Python-way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.