how to include all the data columns from an excel to a dataframe 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
df = pd.read_excel(file_location,sheet_name='Sheet1', usecols="A,C,F")