Complete the get_mid_letter() function which is passed a list of strings as a pa
ID: 3755110 • Letter: C
Question
Complete the get_mid_letter() function which is passed a list of strings as a parameter. The function returns a string made up of the concatenation of the middle letter of each word from the parameter list. The string returned by the function should be in lowercase characters. If the parameter list is an empty list, the function should return an empty string For example Test Result print("1.", get mid_letter"Jess", "Cain", Amity", "Raeann"])) 1. siia Answer (penalty regime: 0 %) 1 -Idef get_mid_letter(a_list): CheckExplanation / Answer
def get_mid_letter(lst): result = "" for x in lst: result += x[len(x)//2] return result.lower()