Posts

Showing posts from January, 2022

Python - error while loading data from csv to dataframe

Image
  While trying to load the CSV file into the pandas data frame received the error. I got this error Problem :  ParserError : Error tokenizing data. C error: Expected 2 fields in line 398, saw 3 Solution:  The file was separate by "|" symbol so we need to use the code  df = pd.read_csv('file.csv', sep='|')