1. from openpyxl import load_workbook
    2. file = load_workbook(filepath)
    3. # 删除sheet
    4. del file['Sheet1']
    5. file.save(filepath)