[ad_1]
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. Is there an idea to solve this issue?
lst = ['1', '2', '3']
the output must be:
lst_1 = ['1']
lst_2 = ['2']
lst_3 = ['3']
[ad_2]