source:
workshop2010/trunk/src/grokworkshop/mergecsv.py
@
5552
Last change on this file since 5552 was 5552, checked in by , 14 years ago | |
---|---|
File size: 182 bytes |
Line | |
---|---|
1 | """Merge two CSV files and output the results. |
2 | """ |
3 | import csv |
4 | |
5 | input1 = """ |
6 | """ |
7 | |
8 | input2 = """ |
9 | """ |
10 | |
11 | |
12 | def merge_csv_files(): |
13 | """Merge a file 'input1.csv' and 'input2.csv'. |
14 | """ |
Note: See TracBrowser for help on using the repository browser.