I think it's because when you do ['a'].extend([]) or whatever, the
result is whatever the method "extend" returns.  But "extend" has no
return value, hence you will see None if you do this interactively.

On Fri, Feb 5, 2010 at 10:55 AM, Aahz <a...@pythoncraft.com> wrote:
> In article <088e7a24-b0d0-4d43-bee7-193e5eaef...@b7g2000pro.googlegroups.com>,
> Dan Brown  <fsenz...@gmail.com> wrote:
>>
>>Why does extending a list with the empty list result in None?  It
>>seems very counterintuitive to me, at least --- I expected ['a'].extend
>>([]) to result in ['a'], not None.
>
> http://www.python.org/doc/faq/general/#why-doesn-t-list-sort-return-the-sorted-list
> --
> Aahz (a...@pythoncraft.com)           <*>         http://www.pythoncraft.com/
>
> import antigravity
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
Gerald Britton
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to