.extend()
Adds list elements to end of the list.
Syntax
list.append(iterable)
This will place passed in iterable (list, tuple, or string) as new elements at the very end of the list.
.append()
does not return any value.
Examples
To add grocery_new
to the end of the grocery
list:
It works for any other type of iterables:
Contributors
- Anonymous contributors