read each line pyhton excel panadas code example
Example 1: import excel file in python pandas
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx')
Example 2: pandas read excel certain columns
import pandas as pd
import numpy as np
file_loc = "path.xlsx"
df = pd.read_excel(file_loc, index_col=None, na_values=['NA'], usecols = "A,C:AA")
print(df)