xxxxxxxxxx
import pandas as pd
# Read the Excel file
data = pd.read_excel('path_to_excel_file.xlsx')
# Access a specific sheet in the Excel file
# For example, if the sheet name is 'Sheet1':
data = pd.read_excel('path_to_excel_file.xlsx', sheet_name='Sheet1')
# Perform further operations on the data as needed
# For example, print the contents of the Excel file
print(data)