Python Digital Forensics Cookbook
上QQ阅读APP看书,第一时间看更新

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.