#!/usr/bin/python# -*- coding: UTF-8 -*-"""题目:编写input()和output()函数输入,输出5个学生的数据记录。"""N = 3# stu# num:string# name:string# score[4]:liststudent = []for i in range(5):student.append(['','',[]])def input_stu(stu):for i in range(N):stu[i][0] = raw_input('input student num:\n')stu[i][1] = raw_input('input student name:\n')for j in range(3):stu[i][2].append(int(raw_input('score:\n')))def output_stu(stu):for i in range(N):print '%-6s%-10s' % (stu[i][0],stu[i][1])for j in range(3):print '%-8d' % stu[i][2][j]if __name__ == '__main__':input_stu(student)print studentoutput_stu(student)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。