Python Forum
Match CSV files for difference
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Match CSV files for difference
#4
This is a problem:

for row in file1_data:
    x = file1_data.index(row)
    file1_list.append(file1_data[x][1])
The second line is constantly searching through the list. My first thought was that it's much better to use enumerate:

for x, row in enumerate(file1_data):
    file1_list.append(file1_data[x][1])
But then I read the third line. file1_data[x] is row. They're the same thing. Why go to all that trouble?

for row in file1_data:
    file1_list.append(row[1])
Which is so simple it might as well be a list comprehension:

file1_list = [row[1] for row in file1_data]
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Match CSV files for difference - by Cuz - Dec-17-2018, 06:19 PM
RE: Match CSV files for difference - by Cuz - Dec-18-2018, 01:12 PM
RE: Match CSV files for difference - by ichabod801 - Dec-18-2018, 01:25 PM
RE: Match CSV files for difference - by Cuz - Dec-18-2018, 02:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Move Files based on partial Match mohamedsalih12 2 810 Sep-20-2023, 07:38 PM
Last Post: snippsat
  Open and read multiple text files and match words kozaizsvemira 3 6,737 Jul-07-2021, 11:27 AM
Last Post: Larz60+
  python 3 find difference between 2 files pd007 2 2,125 May-22-2020, 01:16 AM
Last Post: Larz60+
  Look for match in two files and print out in the first file Batistuta 0 1,587 Mar-03-2020, 02:27 PM
Last Post: Batistuta
  Difference Between 2 files enigma619 3 2,759 Dec-21-2019, 01:39 PM
Last Post: Gribouillis
  How to match two CSV files timlamont 9 5,594 Oct-01-2019, 05:54 PM
Last Post: timlamont
  Python Script to Produce Difference Between Files and Resolve DNS Query for the Outpu sultan 2 2,503 May-22-2019, 07:20 AM
Last Post: buran
  Compare two large CSV files for a match Python_Newbie9 3 5,793 Apr-22-2019, 08:49 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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