How to create a function that would split out the list into each variable
For Example : if each list has “n” elements
mylist = [var,var1,var2,var3]
anotherlist = [var,var1,var2,var4,var5]
–> result
create a function that would split out these variables list
split(mylist) -->
x = var
x1 = var1
x2 = var2
:
xn = varn
I don’t quite understand your question, but do you mean something like that: