CSV files are simple spreadsheets that are easy to share. They are basically a text file with tabular data, separated by commas (hence the name Comma-Separated Values), in a simple table format. CSV files can be created using Python's standard library and can be read by most spreadsheet software.
Writing a CSV spreadsheet
Getting ready
For this recipe, only the standard library of Python is required. Everything is ready out of the box!
How to do it...
- Import the csv module:
>>> import csv
- Define the header with how the data will be ordered and the data...