使用python的input,print等函数输入和输出学生的姓名,拼音,学号,电话,邮箱,三门课程成绩等信息生成空列表与元组
时间: 2024-03-23 13:38:36 浏览: 81
可以按照以下代码实现您的需求:
```python
# 获取学生信息
name = input("请输入学生姓名:")
pinyin = input("请输入学生拼音:")
student_id = input("请输入学生学号:")
phone = input("请输入学生电话:")
email = input("请输入学生邮箱:")
score1 = float(input("请输入第一门课程成绩:"))
score2 = float(input("请输入第二门课程成绩:"))
score3 = float(input("请输入第三门课程成绩:"))
# 生成空列表与元组
student_list = []
student_tuple = ()
# 将学生信息添加到列表中
student_list.append(name)
student_list.append(pinyin)
student_list.append(student_id)
student_list.append(phone)
student_list.append(email)
student_list.append(score1)
student_list.append(score2)
student_list.append(score3)
# 将学生信息添加到元组中
student_tuple = (name, pinyin, student_id, phone, email, score1, score2, score3)
# 打印学生信息
print(student_list)
print(student_tuple)
```
执行后,您可以输入学生信息,程序会根据您的输入生成一个空列表和一个元组,并将学生信息添加到列表和元组中。最后,程序会打印出这个学生信息列表和元组。
阅读全文