python 字典 学生信息
时间: 2024-01-04 10:20:14 浏览: 85
学生信息
以下是一个关于Python字典的学生信息的例子:
```python
# 创建一个学生信息的字典
student_info = {
'name': '张三',
'age': 20,
'gender': '男',
'Machine_learning': 90,
'Python_score': 85,
'English_score': 95
}
# 打印学生信息
print("学生信息:")
print("姓名:", student_info['name'])
print("年龄:", student_info['age'])
print("性别:", student_info['gender'])
print("机器学习成绩:", student_info['Machine_learning'])
print("Python程序设计成绩:", student_info['Python_score'])
print("研究生英语成绩:", student_info['English_score'])
```
阅读全文