Respuesta :
Answer:
Here is the Python program which has a function sum_scores:
def sum_scores(score1, score2, score3, score4):
sum = score1 + score2 + score3 + score4
print(sum)
sum_scores(14,7,3,0)
Explanation:
- Method sum_scores takes four arguments, score1, score2, score3, score4.
- The sum variable adds these four scores and stores the value of their addition.
- Lastly print statement is used to print the value stored in sum variable which is the value obtained by adding the four scores.
- Last statement calls the sum_scores method and passes four values to it which are 14,7,3,0
- The output of the above program is:
- 24
- If you want to use return statement instead of print statement you can replace print(sum) with return sum. But in order to display the sum of the scores you can replace sum_scores(14,7,3,0) with print(sum_scores(14,7,3,0))
- The program along with the output is attached as a screenshot.

The function that calls sum_scores and take four argument and returns the team total score is as follows:
def sum_scores(a, b, c, d):
return a + b + c + d
print(sum_scores(5, 10, 15, 20))
Code explanation:
The code is written in python.
- The first line of code, we declared a function names "sum_scores" . The function accept four argument namely a, b, c and d. This argument represents the team score for each quarter.
- Then, we return the sum of the parameters. This simply means we summed the score .
- Finally, we return the total scores of the team with a print statement
learn more on python code here: https://brainly.com/question/26104476
