Comment on Python Performance: Why 'if not list' is 2x Faster Than Using len()

<- View Parent
Artyom@lemm.ee ⁨2⁩ ⁨days⁩ ago

In my experience, if you didn’t write the function that creates the list, there’s a solid chance it could be None too, and if you try to check the length of None, you get an error. This is also why returning None when a function fails is bad practice IMO, but that doesn’t seem to stop my coworkers.

source
Sort:hotnewtop