Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 999 Bytes

File metadata and controls

51 lines (36 loc) · 999 Bytes
Title Description Subjects Tags CatalogContent
.append()
Adds an item to end of the list.
Data Science
Computer Science
Lists
Methods
learn-python-3
paths/data-science
paths/computer-science

The Python list method .append() adds an item to the end of a list.

Syntax

list.append(item)

The .append() will place the object passed in as a new element at the very end of the list. Printing the list afterwards will visually show the appended value.

This method is not to be confused with returning an entirely new list with the passed object.

Example

To add '🥚' to the end of the grocery list:

grocery = ['🍉', '🍪', '🥬', '🥕']

grocery.append('🥚')

print(grocery)
# Output: ['🍉', '🍪', '🥬', '🥕', '🥚']

Codebyte Example

To add 'tulips' to the end of the orders list:

orders = ['daisies', 'periwinkle']

orders.append('tulips')

print(orders)