Trusted answers to developer questions

How to make a list in Python

Get Started With Data Science

Learn the fundamentals of Data Science with this free course. Future-proof your career by adding Data Science skills to your toolkit — or prepare to land a job in AI, Machine Learning, or Data Analysis.

Defining a list in Python is really quite simple. All that’s needed is to give a name to the list and then initialize by providing it with values.

For example:

myExampleList = [element1, element2, element3,...]

Initializing a list of strings

myStringList = ["Learn", "python","with","Educative"]
print(myStringList)
svg viewer

Accessing elements

Similar to most other programming languages, lists in Python are zero indexed.

For example:

myIntList = [1, 3, 5 ,2, 4]

We will use myIntList[0] to get the first element from the list, that is, 1.

svg viewer
myIntList = [1,3,5,2,4]
print(myIntList[3])

Note: You can create an empty list: lst = [] or lst = list()

RELATED TAGS

python
list
Copyright ©2024 Educative, Inc. All rights reserved
Did you find this helpful?