Comma separated values
- This directory contains a data file contains a sample data file:
data01.csv. Use the csv module in the Python standard
library to read that file and print a report with text columns
left-aligned and numeric columns right-aligned.
- Write a new CSV file out after transforming several of the
fields. Again, use data01.csv as your input. Trying
inserting a comma in one of the fields to see how the csv
module handles that.
What you will learn:
- How to read and write CSV files using the csv module.
References: