python Programming Glossary: dtime
loop through rows of one csv file to find corresponding data in another http://stackoverflow.com/questions/9564322/loop-through-rows-of-one-csv-file-to-find-corresponding-data-in-another problem file1.csv has a few hundred rows like Code DTime 1 2010 12 26 17 01 2 2010 12 26 17 07 2 2010 12 26 17 15 file2.csv.. What i'm trying to do is to write a script that takes each DTime value in file1.csv and finds the first instance of a partial.. so i'm not sure if that would work. Maybe bring file1's DTime column into a list and for each entry in that list search DateTime..
|