I having problem reading xlsx file using pandas. The file is formatted slighlty. Following is the file - sample.xlsx
I am using the following code in Python3:
>>> import pandas as pd
>>> file = pd.ExcelFile('sample.xlsx')
>>> file.sheet_names
>>> temp = file.parse('Named Insured')
>>> temp.shape
The shape shows 740,10 whereas the original file is quite different. The extracted data is also jumbled.