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
If the number of Items doesn't change you can convert the list to a string and split it to variables.
wedges = ["Panther", "Ali", 0, 360] a,b,c,d = str(wedges).split() print a,b,c,d