#๐ Help with CSV file code
14 messages ยท Page 1 of 1 (latest)
@compact rivet
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.
it just mean the csv doesn't contains that much of elements
try to print c or i before accessing i[2]
oh okay
its showing this
['1', 'adam', '90']
['1', 'adam', '90']
[]
it isnt showing the other records i added though
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
ohh
lemme try looping it then
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