List
A list is a sequence of values, where the same value may occur more than once.
Python Example
# Define a list. Elements are enclosed in brackets. list1 = ["a", "b", "c"] # Print the list. print(list) # Print individual elements of the list. Indexing starts at 0. print(list1[0]) print(list1[1]) print(list1[2])