notebook报错,请问一下这个错误是什么意思?

问题遇到的现象和发生背景

import time

history, details = get_tencent_data()
print(history)
print(details)

问题相关代码,请勿粘贴截图

KeyError Traceback (most recent call last)
Input In [34], in <cel line: 3>()
1 import time

3 history, details = get_tencent_data()
4 print(history)
5 print(details)

Input In [30], in get_tencent_data()
34 heal_add = i["heal"]
35 dead_add = i["dead"]

36 history[ds].update({"confirm_add": confirm_add, "suspect_add": suspect_add, "heal_add": heal_add, "dead_add": dead_add})
38 details = [] # 当日详细数据
39 update_time = data_det["lastUpdateTime"]

KeyError: '2022-02-24'

运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

放个完整的代码啊,get_tencent_data()明显不是time模块的

错误发生在get_tencent_data()函数内部,起码也得把这个函数完整得贴过来看看啊

def get_tencent_data():
"""
:return: 返回历史数据和当日详细数据
"""
url_det = 'https://api.inews.qq.com/newsqa/v1/query/inner/publish/modules/list?modules=diseaseh5Shelf%27
url_his = "https://api.inews.qq.com/newsqa/v1/query/inner/publish/modules/list?modules=chinaDayList,chinaDayAddList,nowConfirmStatis,provinceCompare%22
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',
}
r_det = requests.get(url_det, headers)
r_his = requests.get(url_his, headers)
res_det = json.loads(r_det.text) # json字符串转字典
res_his = json.loads(r_his.text)
data_det = res_det['data']['diseaseh5Shelf']
data_his = res_his['data']

history = {}  # 历史数据
for i in data_his["chinaDayList"]:
    ds = i["y"]+"."+i["date"]
    tup = time.strptime(ds, "%Y.%m.%d")
    ds = time.strftime("%Y-%m-%d", tup)  # 改变时间格式,不然插入数据库会报错,数据库是datetime类型
    confirm = i["confirm"]
    confirm_now = i["nowConfirm"]
    suspect = i["suspect"]
    heal = i["heal"]
    dead = i["dead"]
    history[ds] = {"confirm": confirm,"confirm_now":confirm_now, "suspect": suspect, "heal": heal, "dead": dead}
for i in data_his["chinaDayAddList"]:
    ds = i["y"]+"."+i["date"]
    tup = time.strptime(ds, "%Y.%m.%d")
    ds = time.strftime("%Y-%m-%d", tup)
    confirm_add = i["confirm"]
    suspect_add = i["suspect"]
    heal_add = i["heal"]
    dead_add = i["dead"]
    history[ds].update({"confirm_add": confirm_add, "suspect_add": suspect_add, "heal_add": heal_add, "dead_add": dead_add})

details = []  # 当日详细数据
update_time = data_det["lastUpdateTime"]
data_country = data_det["areaTree"]  # list 之前有25个国家,现在只有中国
data_province = data_country[0]["children"]  # 中国各省
for pro_infos in data_province:
    province = pro_infos["name"]  # 省名
    for city_infos in pro_infos["children"]:
        city = city_infos["name"] #城市名
        confirm = city_infos["total"]["confirm"] #l累计确诊
        confirm_add = city_infos["today"]["confirm"] #新增确诊
        confirm_now = city_infos["total"]["nowConfirm"] #现有确诊
        heal = city_infos["total"]["heal"] #累计治愈
        dead = city_infos["total"]["dead"] #累计死亡
        details.append([update_time, province, city, confirm, confirm_add,confirm_now, heal, dead])
return history, details

我也是报错 一模一样的错误,请问你解决了吗?我找了一下午错误快烦死了