Adding Items to a List
Adding an Item to the End of a List
# .append() Example
a_list = ['apple', 'oranges']
a_list.append('kiwi')
a_list.append('honeydew')
print('a_list:', a_list)a_list: ['apple', 'oranges', 'kiwi', 'honeydew']Adding an Item at a Location
Combining Lists
List Repetition Operation
Last updated