You can use pandas, as it can import and export specific sheets from excel-files:
import pandas as pd
sheet1 = pd.read_excel(filepath=r'C:\xlsfile.xlsx', sheet_name='Sheet 1')
sheet2 = pd.read_excel(filepath=r'C:\xlsfile.xlsx', sheet_name='Sheet 2')
sheet3 = pd.read_excel(filepath=r'C:\anotherfile.xlsx', sheet_name='Sheet 1')
sheet4 = pd.read_excel(filepath=r'C:\athirdfile.xlsx', sheet_name='Sheet 1')
outputfile = r'C:\output.xlsx'
sheet1.to_excel(outputfile, sheet_name='Sheet 1-1')
sheet2.to_excel(outputfile, sheet_name='Sheet 1-2')
sheet3.to_excel(outputfile, sheet_name='Sheet 2-1')
sheet4.to_excel(outputfile, sheet_name='Sheet 3-1')
this reads 4 single sheets from 3 seperate files and creates a single output-file with 4 sheets.