在一行中给出n个非负整数,即这n位学生的成绩,其间以空格分隔。 score = list(map(int, input().split())) # 通过map()和list()函数把用户输入转化成int列表[添加链接描述](https://docs.python.org/zh-cn/3/library/math.html) 1. 2. # 输入一个正整数n,计算 1!+2!+3!+...+n! 的和并输出。