Let's test your knowledge. Is this statement true or false?
The output of the following code in Python will be 3.
PYTHON
1numbers = [3, 2, 5, 7, 3, 6]
2print(numbers[3])
Press true if you believe the statement is correct, or false otherwise.
The output of the following code in Python will be 3.
1numbers = [3, 2, 5, 7, 3, 6]
2print(numbers[3])
Press true if you believe the statement is correct, or false otherwise.