merge two sheets in excel code example
Example: merge multiple excel workssheets into a single dataframe
df = pd.concat(pd.read_excel(workbook_url, sheet_name=None), ignore_index=True)
df = pd.concat(pd.read_excel(workbook_url, sheet_name=None), ignore_index=True)