Home > Mobile >  problem reading panda csv file into python
problem reading panda csv file into python

Time:09-01

I have a very elementary csv reading program which does not work

import pandas as pd

Reading the tips.csv file

 data = pd.read_csv('tips.csv')`

The error messages are long and end with tips.csv not found

CodePudding user response:

Is your csv file in the same folder?

  • Related