On Jul 17, 2018, at 12:18, MRAB <pyt...@mrabarnett.plus.com> wrote:

> Why use len(...) == 0 instead of not(...)?
> 
>    assert not(subdirs := list(path.iterdir())), subdirs

Off-topic, but it’s a style thing.  Some style guides (and my personal 
preference) require to be more explicit when checking for empty sequences.  
I’ll use a boolean test (e.g. `not` or false-iness) when the subject could be 
empty, None, or the empty string, and `len() == 0` when the subject is supposed 
to be a sequence.

-Barry


Attachment: signature.asc
Description: Message signed with OpenPGP

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to