how to convert excel sheet to data processing using pandas?

49 Views Asked by At

enter image description herehow to convert this excel to data processing using pandas

import pandas as pd 
df = pd.read_excel(r"c:/Users/vpullabh/Desktop/Meraci.Ec-NGIOSD.xlsx", sheet_name="sheet1")
print(df)
1

There are 1 best solutions below

0
gtomer On

The command read_excel convert an excel file to a dataframe. You want to add skiprows to get directly to the table:

df = pd.read_excel(r"c:/Users/vpullabh/Desktop/Meraci.Ec-NGIOSD.xlsx", sheet_name="sheet1", skiprows=19)