[Tutor] Standard way to append to a list?

Simon Wittber (Maptek) Simon.Wittber@perth.maptek.com.au
Tue Apr 15 02:03:01 2003


>What is the standard way to add 4 to the end of the list?  I know:
>
>list =3D list + [4]
>
>would work.  What else is there?


I've always used:

list.append(value)