I am newbie to Python and need to convert a list to dictionary. I know that we can convert a list of tuples to a dictionary.
This is the input list:
The below code will take care of both even and odd sized list :
[set(L[i:i+2]) for i in range(0, len(L),2)]