104k views
4 votes
What is the output of this program?

grades = [89, 70, 98, 100, 83]

print(grades[2])

User Pabloxio
by
8.9k points

1 Answer

3 votes

Answer:

98

Step-by-step explanation:

The first value of every list starts from 0. So grades[0] would equal 89 and grades[1] equal 70 and so on.

User Sigabrt
by
8.7k points

No related questions found