Python for Testers #12 – Lists in Python | Python Lists Explained

In this Python for Testers Tutorial series we will learn about Lists in Python. List are used to store multiple values in a single variable. Python lists are used to store collections of data. We can store same type of data in lists or combination of different types of data.

Lists in Python are ordered and allow duplicate values. Items in Python list are indexed so you can get the list items easily using the indexes of List items. Python lists explained in details in this Python tutorial.