how to append to an list python code example
Example 1: how do i add to a list in python
a=[1,2,3,4]
a+=[5,6]
Example 2: using append in python
lst=[1,2,3,4]
print(lst)
#prints [1,2,3,4]
lst.append(5)
print(lst)
#prints [1,2,3,4,5]
a=[1,2,3,4]
a+=[5,6]
lst=[1,2,3,4]
print(lst)
#prints [1,2,3,4]
lst.append(5)
print(lst)
#prints [1,2,3,4,5]