In [8]:
import pandas as pd
Once the library is imported we can make use of it

In [9]:
data = pd.read_csv('../data/car_insurance.csv')

In [10]:
data.columns


Out[10]:
Index(['firstname', 'lastname', 'age', 'city', 'state', 'country', 'zip',
       'years_of_driving_license', 'claims_per_year'],
      dtype='object')