Skip to content
Advertisement

IndexError: list index out of range error on python

This is my code:

JavaScript

This is in items.txt:

JavaScript

I am getting this error:

JavaScript

I am trying to make a program that makes a receipt of items so if you could provide any code that would be helpful. Any help would be appreciated.

Advertisement

Answer

The problem you have in your code is with the empty strings in your items.txt file. When there’s an empty string, fire would resolve to [''], which is a list of only 1 item, so you get an error when the code tries to run c = fire[1]. You can add a check to see if it’s an empty line or not:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement