Python 3 Programming Tutorial - Reading from a CSV spreadsheet

In this Python 3 programming tutorial, we cover how to read data in from a CSV spreadsheet file. CSV, literally standing for comma separated variable, is just a file that has data that is separated by some sort of delimiter, it does not have to be a comma. Luckily for us, Python 3 has a built in module for reading and writing from and to CSV files! Sample code for this basics series:
Back to Top