I have a list of names my_names = ["A","B","C"]
I have a function that can takes each name from a list and returns several lists of information for that name.
def my_function(name):
    return list1, list2, list3
For each name list1, list2, list3 are different.
I want to write a function that wouldn't need any user input but would return a list with 3 lists inside.
def my_function():
    for name in my_list:
        # Part I don't know how to do
        name_list = list1, list2, list3
        # A_list for "A", B_list for "B", C_list for "C"
    return A_list, B_list, C_list
The only thin I don't know is how to make python introduce new empty lists depending on the name in my_list
 
     
    