read excel files in pandas 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: find data in sheet pandas
import pandas
df = pandas.DataFrame()
df[df.text_column.str.contains('whatever')] #to replace ctrl+f in pandas