Python Forum
csv reader Index out of range
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
csv reader Index out of range
#5
you are over-complicating something simple as

import csv

infile = 'infile.csv' # file with large number of columns, dummy filednames field1, field2...field1460
outfile = 'outfile.csv' # you need just 3 out of 1460 columns field2, field10, filed25, in that order

fieldnames = ['field2', 'field10', 'field25']

with open(infile, 'r') as in_f, open(outfile, 'w', newline='') as out_f:
    rdr = csv.DictReader(in_f)
    wrtr = csv.DictWriter(out_f, fieldnames=fieldnames, extrasaction='ignore')
    wrtr.writeheader()
    for row in rdr:
        wrtr.writerow(row)
Reply


Messages In This Thread
csv reader Index out of range - by mathisp64 - Jan-10-2018, 05:51 PM
RE: csv reader Index out of range - by mpd - Jan-10-2018, 08:22 PM
RE: csv reader Index out of range - by wavic - Jan-10-2018, 09:16 PM
RE: csv reader Index out of range - by mathisp64 - Jan-11-2018, 09:11 PM
RE: csv reader Index out of range - by buran - Jan-11-2018, 09:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Down I hate "List index out of range" Melen 20 3,392 May-14-2023, 06:43 AM
Last Post: deanhystad
Exclamation IndexError: Replacement index 2 out of range for positional args tuple - help? MrKnd94 2 6,502 Oct-14-2022, 09:57 PM
Last Post: MrKnd94
  xml simple reader kucingkembar 2 1,074 Aug-19-2022, 08:51 PM
Last Post: kucingkembar
  IndexError: list index out of range dolac 4 1,954 Jul-25-2022, 03:42 PM
Last Post: deanhystad
  I'm getting a String index out of range error debian77 7 2,384 Jun-26-2022, 09:50 AM
Last Post: deanhystad
  IndexError: list index out of range Anldra12 2 1,468 May-03-2022, 01:39 PM
Last Post: Anldra12
  Having strange results from an RFID HID card reader - I'm stuck orbisnz 1 1,510 Mar-28-2022, 08:20 AM
Last Post: Larz60+
  matplotlib x axis range goes over the set range Pedroski55 5 3,268 Nov-21-2021, 08:40 AM
Last Post: paul18fr
  Thoughts on interfacing with a QR code reader that outputs keystrokes? wrybread 1 1,503 Oct-08-2021, 03:44 PM
Last Post: bowlofred
  IndexError: list index out of range rf_kartal 6 2,885 Sep-07-2021, 02:36 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020