how to write and append in python 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: append in python
EmptyList = []
list = [1,2,3,4]
#for appending list elements to emptylist
for i in list:
EmptyList.append('i')