The following list is given: numbers = [1, 4, 5, 7] What value will be returned when we want to read the item with index 4? numbers[4]
The following list is given:
numbers = [1, 4, 5, 7]
What value will be returned when we want to read the item with index 4?
numbers[4]
a. The NameError will be raised.
b. 7
c. The IndexError will be raised.
d. The keyError will be raised.
e. None