if I have a list, say:
ll = [\'xx\',\'yy\',\'zz\']
and I want to assign each element of this list to a separate variable:
v
You should go back and rethink why you "need" dynamic variables. Chances are, you can create the same functionality with looping through the list, or slicing it into chunks.