I wrote a function combine(names, ages) that takes in two lists,…

Question Answered step-by-step I wrote a function combine(names, ages) that takes in two lists,… I wrote a function combine(names, ages) that takes in two lists, names and ages and returns a list of strings in the format “Name: name, age: age”. I used the following, combine([“Claire”, “Jennifer”],[23, 19]) would return [“Name: Claire, age: 23”, “Name: Jennfier, age: 19”]. Computer Science Engineering & Technology Python Programming CSE 5636 Share QuestionEmailCopy link Comments (0)