Earthly ➤ https://earthly.dev/youtube
In this Python Programming Tutorial, you'll learn how to read CSV files. You'll will learn how to read CSV files three ways, twice using the csv package, normal reader and dictreader, and finally using pandas. I'll also show you how to change the delimiter type and read tab-separated values.
CSV stands for "Comma-Separated Values." It is a common format for storing tabular information.
Timeline
00:00 - What is a CSV file?
01:06 - Read in Python using csv.reader
03:09 - Skipping the CSV header
04:00 - Read in Python using DictReader
04:55 - Change Separator or Delimiter
06:02 - Read CSV in Python by column using Pandas