def basketballMVP(tally): BBdict = {“Bench”:0, “Pro”:0,…
def basketballMVP(tally): BBdict = {“Bench”:0, “Pro”:0, “MVP”:0} for player, score in tally: if score < 50: print("Go Practice") BBdict += 1 elif score > 80: print(“Goat”) BBdict += 1 else: BBdict += 1 return BBdict tally = print(basketballMVP(tally))