python dict 字典添加数据操作 添加两个键值对时间:2021-11-02 00:55:58# 定义字典d = {}# 添加数据d["name"] = "pyhui"# 再次添加数据d["age"] = 22# 输出内容print(d)