发布网友 发布时间:2022-04-23 21:33
共2个回答
热心网友 时间:2022-04-06 15:55
# 创建 dic_student 字典
dic_student = dict()
# 依次输入姓名和年龄,存入dic_student字典,共 5 组数据
for i in range(5):
name = input().strip()
age = int(input().strip())
dic_student.update({name: age})
# 按行输出,中间用 \t 隔开
for key, value in dic_student.items():
print(key, value, sep='\t')
热心网友 时间:2022-04-06 17:13