I have a list of unique elements. I want to break it down into several lists so that each list has only one element of the original list and has a unique name based on the element index separately. Is there an idea to solve this issue?
lst = ['1', '2', '3']
the output must be:
lst_0 = ['1']
lst_1 = ['2']
lst_2 = ['3']