source: workshop2010/branches/uli-experimental/src/grokworkshop/mergecsv.py @ 5548

Last change on this file since 5548 was 5548, checked in by uli, 14 years ago
  • Add some input files as local strings.
  • Make use of csv module.
File size: 182 bytes
Line 
1"""Merge two CSV files and output the results.
2"""
3import csv
4
5input1 = """
6"""
7
8input2 = """
9"""
10
11
12def merge_csv_files():
13    """Merge a file 'input1.csv' and 'input2.csv'.
14    """
Note: See TracBrowser for help on using the repository browser.