题解 | #淘汰排名最后的学生#
淘汰排名最后的学生
https://www.nowcoder.com/practice/d7cc81fa615c4231b5f86c97e5b275b4
students = input().split() i=0 while i<3: students.pop(-1) i += 1 print(students)
淘汰排名最后的学生
https://www.nowcoder.com/practice/d7cc81fa615c4231b5f86c97e5b275b4
students = input().split() i=0 while i<3: students.pop(-1) i += 1 print(students)
相关推荐