2 append - append one or more values to end of list
5 append(x, y_0, y_1, ...)
8 x lvalue whose value is a list
14 If after evaluation of y_0, y_1, ..., x is a list with contents
15 (x_0, x_1, ...), then after append(x, y_0, y_1, ...), x has
16 contents (x_0, x_1, ..., y_0, y_1, ...).
18 If after evaluation of y_0, y_1, ..., x has size n,
19 append(x, y_0, y_1, ...) is equivalent to insert(x, n, y_0, y_1, ...).
26 list (5 elements, 5 nonzero):
33 > append(x, pop(x), pop(x))
36 list (5 elements, 5 nonzero):
43 > append(x, (remove(x), 7))
46 list (5 elements, 5 nonzero):
54 append() can have at most 100 arguments
60 delete, insert, islist, list, pop, push, remove, rsearch, search, size