the append function code example
Example 1: python append to list
stuff = ["apple", "banana"]
stuff.append("carrot")
# Print to see if it worked
print(stuff)
# You can do it with a variable too
whatever = "pineapple"
stuff.append(whatever)
# Print it again
print(stuff)
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]