Suppose I have a function that cleans a string (ex. make the string all uppercase letters and etc).
def clean_string(s)
How do I apply this function to strings in a list and return a cleaned list? I think this uses for loops but I just can't get around it.