list in python with adding code example
Example 1: python how to add to a list
food = "banana"
basket = []
basket.append(food)
Example 2: how do i add to a list in python
a=[1,2,3,4]
a+=[5,6]
food = "banana"
basket = []
basket.append(food)
a=[1,2,3,4]
a+=[5,6]