题解 | #班级管理#
班级管理
https://www.nowcoder.com/practice/e5539db11767449ab2fb68ed3c2446d0
l = []
for i in range(4):
    l.append(input())
a = len(l[3].split(' '))
print(
    f"{l[0]}'s student number is {l[1]}, and his grade is {l[2]}. He submitted {a} assignments, each with a grade of {l[3]}"
)

