8、请写语句统计score=[92,88,79,96,85,51,90,93,88,56]中最高分和最低分分别是第几位应试者。
score=[92,88,79,96,85,51,90,93,88,56] print('最高分{},是第{}位'.format(max(score),score.index(max(score))+1))