print("请输入考试人数") n=int(input()) score = [] i = 0 print("请输入%d个考生的成绩:",n) while i<n: num = int(input()) score.append(num) i+=1 print(score)