Dealing with CSV Files
In this lesson, we discuss how to read from and write to CSV files.
We'll cover the following...
CSV
CSV stands for comma separated values. These are the most common and widely used files with a pandas DataFrame
object.
It is a kind of a text file that uses the extension .csv instead of .txt. Text is separated by commas ,
in this file, and when a DatFrame
reads this file, values between commas ...