How to read CSV File into Python using Pandas

In this post, we’ll go over how to import a CSV File into Python.

Barney H.
Towards Data Science
3 min readMay 25, 2020

--

Photo by AbsolutVision on Unsplash

Short Answer

The easiest way to do this :

import pandas as pddf = pd.read_csv ('file_name.csv')
print(df)

--

--