Load the uploaded Excel file to inspect and process it
uploaded_file_path = '/mnt/data/Corrected_Influencer_Details.xlsx'
Read the Excel file into a pandas DataFrame
uploaded_df = pd.read_excel(uploaded_file_path)
Display the first few rows of the DataFrame to understand its structure
uploaded_df.head()