python output data to list append code example
Example 1: 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]
Example 2: how to add an item to a list python
numbers = [1, 2, 3, 4]
numbers.append(10)
print(numbers)