source:
workshop2010/trunk/src/grokworkshop/mergecsv.py
@
5553
Last change on this file since 5553 was 5552, checked in by , 15 years ago | |
---|---|
File size: 182 bytes |
Rev | Line | |
---|---|---|
[5545] | 1 | """Merge two CSV files and output the results. |
2 | """ | |
[5548] | 3 | import csv |
4 | ||
5 | input1 = """ | |
6 | """ | |
7 | ||
8 | input2 = """ | |
9 | """ | |
10 | ||
11 | ||
[5546] | 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.