find data in a column excel python pandas code example

Example 1: pandas read excel certain columns

df = pd.read_excel(file_location,sheet_name='Sheet1', usecols="A,C,F")

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)

Example 3: how to search for a data in excel pandas

import pandas
df = pandas.DataFrame()
df = df[df.text_column.str.contains('whatever')] #to replace ctrl+f in pandas
print(df)