题解 | #班级管理#
班级管理
https://www.nowcoder.com/practice/e5539db11767449ab2fb68ed3c2446d0
两行搞定!
a, b, c, d = input(), input(), input(), input() print(a + "'s student number is " + b + ", and his grade is " + c + ". He submitted " + str(len(d.split())) + " assignments, each with a grade of " + d)