- Python Digital Forensics Cookbook
- Preston Miller Chapin Bryce
- 74字
- 2021-07-08 10:34:05
Working with CSVs
Recipe Difficulty: Easy
Python Version: 2.7 or 3.5
Operating System: Any
Everyone has reviewed data in a CSV spreadsheet at some point. They are pervasive and a common output format for most applications. Writing CSVs with Python is one of the easiest methods to create a report of processed data. In this recipe, we will demonstrate how you can use the csv and unicodecsv libraries to create quick reports with Python.