1. from openpyxl import load_workbook
    2. file = load_workbook(filepath)
    3. # 设定默认打开sheet的位置
    4. file.active = 0
    5. file.save(filepath)