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)
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)
Copyright © 2021 Jogjafile Inc.
The command
read_excelconvert an excel file to a dataframe. You want to addskiprowsto get directly to the table: