def whereToGo(destinations):      finalList = []      for c,…

def whereToGo(destinations):      finalList = []      for c, s in destinations:          if s == “FL”:              print(f”{c} is fun!”)             finalList.append(c)      finalList.sort()      return finalList  print(whereToGo([(“Miami”,”FL”), (“Boston”,”MA”),                  (“Albany”,”NY”),(“Tampa”,”FL”),                  (“Atlanta”, “GA”)])) 

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["Bench"] += 1         elif score > 80:              print(“Goat”)             BBdict[“Pro”] += 1         else:              BBdict[“MVP”] += 1     return BBdict   tally = [(“LeBron James”,56),(“Damon James”,93),          (“Michael Jordan”,74),(“Larry Bird”,43),          (“Chris Kaman”,23)]print(basketballMVP(tally)) 

A travel agent stores destination ratings in a tuple:  ratin…

A travel agent stores destination ratings in a tuple:  ratings = (85, 90, 78, 92)  Later, she tries to update all ratings by looping over the tuple and adding 5 to each of them. However, the code does not work successfully. Which of the following modifications would allow the agent to achieve their goal?