Comma separated values

  1. 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.
  2. 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:

References: