Python创建一个学生字典并可以查询其中信息# 定义一个字典,存放单个学生信息
stuInfo = {}
stuInfo['name'] = name
stuInfo['id'] = stuId
stuInfo['age'] =
2021-07-05