add item to and of list code example
Example 1: how do i add to a list in python
a=[1,2,3,4]
a+=[5,6]
Example 2: how to add an item to a list python
numbers = [1, 2, 3, 4]
numbers.append(10)
print(numbers)
a=[1,2,3,4]
a+=[5,6]
numbers = [1, 2, 3, 4]
numbers.append(10)
print(numbers)