Testing for an empty dictionary in Python

Bryan Olson fakeaddress at nowhere.org
Sun Mar 23 22:45:54 EDT 2008


D'Arcy J.M. Cain wrote:
> John Nagle  wrote:
>>    What's the cheapest way to test for an empty dictionary in Python?

> Try this:
> 
>     if dict:

D'Arcy is right; that's the way to go. I'll add that 'dict' is the name 
of the built-in class, so an instance is usually best named something else.


-- 
--Bryan



More information about the Python-list mailing list