Glossary
Append
Append item to list in Python
Python Append will add something to the end of your list. It can be anything, a number, object, dictionary, or even another list.
Append simply means βadd this thing to the end of that thing.β
For example, if you had a list of [1,2,3] and you wanted to append β4β you would call list.append(4)
This one is also extremely common throughout the Python language and its libraries. In fact, itβs extremely popular as a part of fundamental coding languages in general.
Now youβll know what it means when you see it in Pandas and Numpy.
Letβs take a look at a python append code sample.