Table of Contents
Lists are very useful in Python because they allow us to store multiple values inside a single variable.
Because of this, creating a list is one of the first things you will learn when you start learning Python.
In this article, we will learn the best ways to create an empty list in Python.
Using square brackets
The easiest and cleanest way to create an empty list in Python is to use square brackets.
This will create a list without any elements in then, thus making the length of the list 0.
PYTHONitems = []
length = len(items)
print(length)
BASH0
Now that you have a list, you can now proceed to add elements to it.
Here's an example of how to do that:
PYTHONitems = []
items.append(1)
items.append(2)
items.append(3)
length = len(items)
print(length)
print(items)
BASH3
[1, 2, 3]
Using the list constructor
Another way to create an empty list in Python is to use the list constructor.
This is a built-in function that allows you to create a list and by default it will be empty.
PYTHONitems = list()
length = len(items)
print(length)
BASH0
Just like before you can now add elements to the list.
PYTHONitems = list()
items.append(1)
items.append(2)
items.append(3)
length = len(items)
print(length)
print(items)
BASH3
[1, 2, 3]
Conclusion
In this article, we learned how to create an empty list in Python.
You can either use square brackets or the list constructor to create an empty list.
Thanks for reading!
Getting Started with TypeScript
How to Install Node on Windows, macOS and Linux
Getting Started with Electron
How to Set Up Cron Jobs in Linux
How to deploy a .NET app using Docker
How to deploy a Node app using Docker
Getting Started with Sass
Learn how to use v-model with a custom Vue component
How to Scrape the Web using Node.js and Puppeteer
Setting Up Stylus CSS Preprocessor
Getting Started with Vuex: Managing State in Vue
How To Create a Modal Popup Box with CSS and JavaScript
