xxxxxxxxxx
import pandas as pd
# Replace 'path/to/your/excel/file.xlsx' with the actual path to your Excel file
df = pd.read_excel('path/to/your/excel/file.xlsx')
# Replace 'Column Name' with the actual column name in your Excel file
max_value = df['Column Name'].max()
print("Max value in the column:", max_value)