Affiliate links on Android Authority may earn us a commission.Learn more.
How to use lists in Python
July 19, 2025
A string is a variable that allows you to store multiple variables with an index. This is an extremely powerful tool in programming and one that you will find yourself using again and again. In this post, we’ll see how lists work, how to create them, and how to add to a list in Python!
What are lists?
A list is a collection of variables. Let’s use the example of a string. A string is a variable that stores a string of alphanumeric characters and symbols. This is used to store such things as names and places, as well as to display text on the screen to users.
Also read:Best online Python courses

But sometimes a string is not enough. For example, imagine that you are making a quiz with multiple questions. You want to be able to bring up these questions at random, programmatically, and add to the list at any time.
One way of doing this would be to create hundreds of individual strings. We’d then need to make some kind of massive, nested “IF/THEN” statement in order to sort through the list. In pseudo code:
IF randomQuestionNumber = 1 THEN PRINT “What is the capital of England”
ELSE IF randomQuestionNumber = 2 THEN PRINT “Who is the president of the United States?”
ELSE IF randomQuestion = 3 THEN PRINT….
You get the picture!
This is not optimal.
Instead, we would add all of our strings to a long list. Think of this like a filing cabinet that contains our strings.
We do this in Python like so:
As with so many other things, creating lists in Python is extremely straight forward! All you need to do is to place the items that make up your list inside square brackets, separated by a comma.
Now you know how to add to a list in Python any time you want to insert more questions: just write an extra item inside the square brackets!
Also read:What is Python and how do you get started?
What’s even better, is that you don’t need to define the data type as Python can work that out for us. We can evenmixdata types within our list:
How to add to a list in Python
If you want to know how to add to a list in Python programmatically, or how to append to a list in Python, you simply use the following:
This will append an additional item to the end of the list.
But what if we want to know how to add to a list in Python while placing the new value at a different position? For example, what if we want to insert a newthirdquestion?
To do that, we would use:
The number is the “index” (i.e. the point where we want to insert our value), and the string is the data we are entering.
You may notice something strange here: to add a newthirdquestion, we are using the index2. The reason for this seeming lunacy, is that list indexes always start at 0. This is true for all programming.
So, if you want to insert something at thestartof the list, you do so like this:
Keep in mind that when you insert a new item in your list this way, you will change the position of all subsequent entries too.
If you want to store data in a non-linear fashion, then you can do so usinganother tool called a dictionary. But that is a conversation for another time!
To delete items from a list, you can likewise use: delete() or clear(). Clear will empty the entire list, whereas delete will let you choose an index in order to remove a specific item.
How to retrieve items from a list
Now, what if we want to retrieve one of these items?
This is really easy too! Simply use the name of your list as you would do with any other variable, and then place the index in square brackets behind it. For example:
This will print the entry with the index “2” to the screen.
If we wanted to print the entire list, then we could do so like this:
This For loop will run incrementally increase the value ofxfrom 0 to the length of the list.
Put all the code together to get a grip on how to append to a list in Python, and do everything else we’ve just learned:
Now you know how to create and append to a list in Python! Of course, were we really building a quiz I would recommend storing your questions in a separate file and then pulling the list from there. That way, you wouldn’t need to know how to add to a list in Python as you could simply update your text file. But that is a story for another time!
Also read:How to call a function in Python
Want to take your Python knowledge further? We recommendCoding with Python: Training for Aspiring Developers, which you can nab for just $49.99, which is an absolute steal as the course is valued around $700.
Thank you for being part of our community. Read ourComment Policybefore posting.