#๐Ÿ”’ Help with CSV file code

14 messages ยท Page 1 of 1 (latest)

silver kayakBOT
#

@compact rivet

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

compact rivet
#

this is the error im getting
Traceback (most recent call last):
File "c:\Users\My PC\Downloads\final draft.py", line 435, in <module>
search()
File "c:\Users\My PC\Downloads\final draft.py", line 432, in search
if int(i[2])>80:
IndexError: list index out of range

toxic tendon
#

it just mean the csv doesn't contains that much of elements

#

try to print c or i before accessing i[2]

compact rivet
#

its showing this
['1', 'adam', '90']
['1', 'adam', '90']
[]

#

it isnt showing the other records i added though

toxic tendon
#

this mean the last line is causing the issue

#

so you have two options
either delete the last line of the csv
or in the loop check the length of the list if it's less than 3 then skip it

compact rivet
silver kayakBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.

#

๐Ÿ”’ Help with CSV file code