python append list items to list code example
Example 1: how to add an item to a list in python
myList = [1, 2, 3]
myList.append(4)
Example 2: how to append a number to a list in python
l = [1, 2, 4, 5]
new_item = 6
l.append(6)
print(l)
Example 3: append to lists python
list = ['larry', 'curly', 'moe']
list.append('shemp')
list.insert(0, 'xxx')
list.extend(['yyy', 'zzz'])
print list
print list.index('curly')
list.remove('curly')
list.pop(1)
print list
Example 4: how to add an item to a list python
numbers = [1, 2, 3, 4]
numbers.append(10)
print(numbers)