70.2k views
0 votes
Use the function written in the last lesson to calculate the gold medalists’ average award money for all of their gold medals. Define another function in your program to calculate the average.

Your program should then output the average award money, including the decimal place. Your program should use a total of two functions. You may assume that the user will provide valid inputs.

Sample Run
Enter Gold Medals Won: 3
How many dollars were you sponsored in total?: 20000
Your prize money is: 245000
Your average award money per gold medal was 81666.6666667

User Eric Stein
by
8.5k points

1 Answer

2 votes

Answer:

def Get_Winnings(g, s):

if g== "1":

return 75000 + s

elif g == "2":

return 150000 + s

elif g == "3":

return 225000 + s

elif g == "4":

return 300000 + s

elif g == "5":

return 375000 + s

else:

return "Invalid"

def Award_Money():

int(total) / int(medals)

medals = input("Enter Gold Medals Won: ")

b = int(input("For how many dollars was your event sponsored? "))

total = Get_Winnings(medals, b)

print("Your prize money is: " + str(total))

money = int(total) / int(medals)

print("Your average award money per gold medal was " + str(money))

Step-by-step explanation:

User Ayub Khan
by
7.8k points