For any name whose length is less than the minimum, replace that item of the list with a new string containing the name with space(s) added to the right-hand side to achieve the minimum length.
For example, if the list contains the name "Sue" and the minimum length is 5, then that item would be replaced with the name padded with 2 spaces: "Sue ". Any names that are already the minimum length or longer are unchanged.
for words in list_of_names:
if len(words) < min_length:
answer = min_length - len(words)
Now i want to take the answer* and add that amount of spaces back into the list.