I am new to python programming,i have this list:
['NAME surname', 'email', 'Type', 'NAME surname', 'email', 'type',and so on..]
Could I split every tree elements of the list in one dictionary key?
For example:
{'Name surname1':['Name Surname1','email1','type1'],'Name surname2':[name2,email2,type2 and so on]}
I need this because i want to specify one Key and obtain the values of the key,in this case the name email and so on.. I have already a big list populated.
Thanks in advance for the help.