Re: [Tutor] Comparing two CSV filess using Python

2015-02-13 Thread Mark Lawrence
On 13/02/2015 01:06, andy van wrote: Hi, I'm trying to compare two CSV files (and many more like these below). I tried many ways, using lists, dictreader and more but nothing gave me the output I require. I want to compare all those rows that have same !Sample_title and !Sample_geo_accession valu

Re: [Tutor] Comparing two CSV filess using Python

2015-02-13 Thread Peter Otten
andy van wrote: > Hi, I'm trying to compare two CSV files (and many more like these below). > I tried many ways, using lists, dictreader and more but nothing gave me > the output I require. I want to compare all those rows that have same > !Sample_title and !Sample_geo_accession values (whose posi

Re: [Tutor] Comparing two CSV filess using Python

2015-02-13 Thread Alan Gauld
On 13/02/15 01:06, andy van wrote: Hi, I'm trying to compare two CSV files (and many more like these below). I tried many ways, using lists, dictreader and more but nothing gave me the output I require. I want to compare all those rows that have same !Sample_title and !Sample_geo_accession values

[Tutor] Comparing two CSV filess using Python

2015-02-12 Thread andy van
Hi, I'm trying to compare two CSV files (and many more like these below). I tried many ways, using lists, dictreader and more but nothing gave me the output I require. I want to compare all those rows that have same !Sample_title and !Sample_geo_accession values (whose positions vary). I've been st