如何用openpyxl将数组输出到Excel(已建)的不同sheet表里面

我第一次接触openpyxl的相关函数,在尝试把不同的数组输出到已经建好的Excel文件的不同sheet表里面的时候,程序报错了,显示找不到这个sheet表是为什么呢?明明表都建好了呀?是我的调用有什么问题吗?

背景:在名为“数据处理”的Excel表中有两个sheet表,其中表一名称为SKshuju,表二名称为CLshuju

问题:KeyError: 'Worksheet CLshuju does not exist.'

我的输出程序:
shiyan = op.load_workbook("数据处理.xlsx")
SK = shiyan["SKshuju"]
CL = shiyan["CLshuju"]
for x in range(1,N+1):
SK.cell(x + 1, 4, VMM[x - 1])
SK.cell(x + 1, 5, A[x - 1])
for y in range(1,T+1):
CL.cell(y + 1, 5, n[y - 1])
CL.cell(y + 1, 6, ne[y - 1])
CL.cell(y + 1, 7, u[y - 1])
CL.cell(y + 1, 8, ue[y - 1])
CL.cell(y + 1, 9, R[y - 1])
CL.cell(y + 1, 10, VM[y - 1])
shiyan.save("数据处理.xlsx")

感觉没什么问题,你要不看看你的excel表格上有没有什么问题。