Home / Python Lists / How to Add an Item to End of List in Python In this example we will show how to add an item to the end of the list in Python. Source Code my_list = ['a', 'b', 'c', 'd', 'e'] my_list.append('f') print(my_list) Output: ['a', 'b', 'c', 'd', 'e', 'f']