首先,新建一个空列表。info = []然后新建字典student = {"Chinese":99,"Math":129,"English":145}接着用list.append() 方法将存储学生成绩的字典添加到列表中info.append(student)