Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 348 Bytes

File metadata and controls

28 lines (19 loc) · 348 Bytes

IndexError: list index out of range

Reproduce

numbers = [10, 20, 30]
print(numbers[3])

Error Message

IndexError: list index out of range

Fix

numbers = [10, 20, 30]
print(numbers[2])

Reflection

Index 3 was out of range.

Reference