...

/

Read CSV Data into Pandas DataFrames

Read CSV Data into Pandas DataFrames

Let's find out how to read CSV data using pandas.

We'll cover the following...

Try it yourself

Try executing the code below to see the result.

Press + to interact
from io import StringIO
import pandas as pd
csv_data = '''\
day,hits
2020-01-01,400
2020-02-02,800
2020-02-03,600
'''
df = pd.read_csv(StringIO(csv_data))
print(df['day'].dt.month.unique())

Explanation

The comma-separated values (CSV) format does not have a schema. Everything we read from it is a string. Pandas does a ...