<div dir="ltr"><br><div class="gmail_quote">On Fri, Aug 29, 2008 at 1:47 PM, David Blaschke <span dir="ltr"><<a href="mailto:dwblas@gmail.com" target="_blank">dwblas@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">This idea<br>
elif x == funky_empty:<br>
       result = 'no data'<br>
<br>
Can be accomplished with<br>
if not len(items):<br>
       result = 'no data'<br>
which means that part of the proposal can be scratched IMHO.<br>
<div><div></div><div></div></div></blockquote><div><br>Not quite: len(items) requires iterating across the entire list which may not be necessary or desirable. Plus you may need an intermediate variable to store it. I think that's inferior.<br>
<br>--- Bruce<br></div></div></div>