I have a list which I want to be made in to a dictionary.
list_x = ['a', 'ada', 'aadsad', ......, 'sd']
Whatever that is in this list and however long (lets say 13 for now) to become a dictionary such that the second item of the list should be the key and everything else, including position 0 to be the values.
I have tried the dict() function from other examples, but it does not do what I want. Thank you in advance.
Does this not work for you?