DEV Community

Muthu
Muthu

Posted on

Read Excel sheet using Pandas

import pandas as pd

EXCEL_FILE = 'source.xlsx'

df= pd.read_excel(open(EXCEL_FILE, 'rb'),skiprows=3,index=False)

print(df)


Enter fullscreen mode Exit fullscreen mode

Top comments (0)