total_score(*scores) that accepts any number of numeric arguments and returns their sum. Calling it with zero arguments should return 0.total_score(10, 20, 30)
60
Sum of the three scores.
total_score()
0
No scores means the sum is 0.
Use *scores to collect a variable number of positional arguments into a tuple.
sum() works directly on that tuple.