第12081题 单选题
使用Python的*args统计学生成绩总和,给定代码运行后的正确结果是什么?
def total_score(*scores):
    return sum(scores)
print(total_score(80, 90, 70))
A

240

B

(80, 90, 70)

C

报错

D

0

程序运行统计
暂无判题统计