python编写input()和output()函数输入,输出5个学生的数据记录,每个学生信息包括学号,姓名及三门课程的成绩。要求使用list来模拟学生记录结构。
时间: 2023-05-25 12:06:47 浏览: 150
以下是一个可能的实现,使用字典表示每个学生的记录,然后将这些字典组合成列表:
```
def input_students():
students = []
for i in range(5):
student = {}
student['id'] = input('请输入学号:')
student['name'] = input('请输入姓名:')
student['score1'] = input('请输入第一门课程成绩:')
student['score2'] = input('请输入第二门课程成绩:')
student['score3'] = input('请输入第三门课程成绩:')
students.append(student)
return students
def output_students(students):
for student in students:
print('学号:{},姓名:{},成绩:{}、{}、{}'.format(student['id'], student['name'], student['score1'], student['score2'], student['score3']))
students = input_students()
output_students(students)
```
这个程序首先定义了两个函数,`input_students`用于输入学生数据,`output_students`用于输出学生数据。`input_students`函数首先创建一个空列表`students`,然后用一个循环遍历五次,每次输入一个学生的信息。输入的信息包括学号、姓名、三门课程的成绩,这些信息分别用字典的键值对表示,并将这个字典加入到列表中。最后返回整个列表。
`output_students`函数接收一个学生列表作为输入,然后对于每个学生,按照特定的格式输出学号、姓名和成绩。
最后,在主程序中调用`input_students`函数输入学生数据,然后调用`output_students`函数输出学生数据。
阅读全文