Say you want to assign the elements of a list to variables without knowing beforehand the size of the list, how do you do it, specifically in Python?
For example lst has 5 elements, program creates 5 variables (var1, var2, var3, var4, var5) and assigns the elements to it.
Maybe you shoulde use
dict