This seems to be a bit difficult to explain. I wish to create the name of a variable from the 1st index of the list and assign the list as its value
as an example:
#the input is a list like below,
['name_of_variable','value1','value2','value3','value4','value5']
#the output would be as below,
name_of_variable = ['value1','value2','value3','value4','value5']
Any suggestions or ideas would be much appreciated.
Thanks in advance