Python list() — A Simple Guide with Video

Python’s built-in list() function creates and returns a new list object. When used without an argument, it returns an empty list. When used with the optional iterable argument, it initializes the new list with the elements in the iterable.

Read more about lists in our full tutorial about Python Lists.

Python list() Visual Explanation

Usage

Learn by example! Here are some examples of how to use the list() built-in function:

You can create an empty list by skipping the argument:

>>> list()
[]

If you pass an iterable—such as another list, a tuple, a set, or a dictionary—you obtain a new list object with list elements obtained from the iterable:

>>> list([1, 2, 3])
[1, 2, 3]

Note that it really creates a new list object that is different from the one passed as an argument:

>>> x = [1, 2, 3]
>>> y = list(x)
>>> x is y
False
>>> x == y
True

The new list y has the same elements as the original list x. But it’s still a different object as you can see from the check x is y that returns False.

Video list()

Syntax list()

You can use the list() method with or without the optional iterable argument.

Syntax: There are two ways of using the constructor:
list() -> new empty list
list(iterable) -> new list initialized with elements in iterable

Interactive Shell Exercise: Understanding list()

Consider the following interactive code:

Exercise: Guess the output before running the code.


Check out my new Python book Python One-Liners (Amazon Link).

If you like one-liners, you’ll LOVE the book. It’ll teach you everything there is to know about a single line of Python code. But it’s also an introduction to computer science, data science, machine learning, and algorithms. The universe in a single line of Python!

The book was released in 2020 with the world-class programming book publisher NoStarch Press (San Francisco).

Publisher Link: https://nostarch.com/pythononeliners


Summary

Python’s built-in list() function creates and returns a new list object.

  • When used without an argument, it returns an empty list.
  • When used with the optional iterable argument, it initializes the new list with the elements in the iterable.
>>> list()
[]
>>> list([1, 2, 3])
[1, 2, 3]

I hope you enjoyed the article! To improve your Python education, you may want to join the popular free Finxter Email Academy:


Do you want to boost your Python skills in a fun and easy-to-consume way? Consider the following resources and become a master coder!

Where to Go From Here?

Enough theory. Let’s get some practice!

Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.

To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?

You build high-value coding skills by working on practical coding projects!

Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?

🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.

If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.

Join the free webinar now!