数组成绩输出到终端两个方法 用户6255219915579 2021-05-03 106 阅读1分钟 scores = [40, 50, 43, 70, 10, 30, 64, 88, 55, 12] for index in scores: print(index) len(scores) print(len(scores)) for index in range(0,len(scores)): print(scores[index])