THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator)

alex23 wuwei23 at gmail.com
Mon Jan 16 01:30:24 EST 2012


On Jan 16, 4:03 pm, "_" <pan... at yandex.ru> wrote:
> # THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON:
> Word = Word.append("34") # APPEND TO LIST ONE MORE SIGNED: "34"

list.append is an in-place operation; it doesn't return a copy of the
list, so here you're setting Word to None.



More information about the Python-list mailing list