There are several ways to to add an element to a python list, such as list.append(), list.extend(), +, += or itertools.chain(). list.append(), list.extend(), + and += are most common used in python script. What about the differences among them? In this tutorial, we will discuss this topic.