pair_names_scores(names, scores) that returns a list of strings like "name: score" by iterating over both lists together with zip(). If the lists differ in length, stop at the shorter one (default zip behavior).pair_names_scores(["Amy", "Bo"], [90, 85])
["Amy: 90", "Bo: 85"]
Elements paired positionally.
`for name, score in zip(names, scores):` pairs elements from both lists.
Format each pair with an f-string and collect into a list.