# Reviews
What are the data items in the list called?
Which list will be referenced by the variable number after the execution of the following code?
number = range(0, 9, 2)
What would you use if an element is to be removed from a specific index?
What is the first negative index in a list?
What method can be used to place an item in the list at a specific index?
What would be the value of the variable list after the execution of the following code?
list = [1, 2]
list = list * 3
What would be the value of the variable list after the execution of the following code?
list = [1, 2, 3, 4]
list[3] = 10
What method or operator can be used to concatenate lists?
What would be the value of the variable list2 after the execution of the following code?
list1 = [1, 2, 3]
list2 = list1
list1 = [4, 5, 6]
What would be the value of the variable list2 after the execution of the following code?
list1 = [1, 2, 3]
list2 = []
for element in list1
list2.append(element)
list1 = [4, 5, 6]
When working with multiple sets of data, one would typically use a(n) .
The primary difference between a tuple and list is that .
What is the advantage of using tuples over lists?
What method can be used to convert a list to a tuple?
What method can be used to convert a tuple to a list?