Home / Python Lists / How to Create a List in Python In this example we will show how to create a list in Python. Source Code my_list = ['a', 'b', 'c'] print(my_list) Output: ['a', 'b', 'c']