python (1)创建字典dic_student,由用户一次输入五名学生的姓名和年龄,存入字典,输出字典中的内容,格式为
时间: 2023-12-29 15:11:01 浏览: 153
从列表或字典创建Pandas的DataFrame对象的方法
好的,以下是Python代码实现您的需求:
```python
# 创建一个空的字典
dic_student = {}
# 循环5次,每次获取用户输入的姓名和年龄,存入字典
for i in range(5):
name = input("请输入第{}个学生的姓名:".format(i+1))
age = input("请输入第{}个学生的年龄:".format(i+1))
dic_student[name] = age
# 输出字典中的内容
print("字典中的内容为:")
for name, age in dic_student.items():
print("{}的年龄是{}".format(name, age))
```
运行以上代码,您可以输入五个学生的姓名和年龄,程序会将其存入字典`dic_student`中,并按照指定格式输出字典中的内容。
阅读全文