list into dictionary | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

list into dictionary

I am trying to turn a list like this [account1, pass1, account2, pass2] or [account1=pass1, account2=pass2] into a dictionary {account1:pass1, account2:pass2} does anyone know how I can do that in python 3?

2nd Jul 2017, 9:31 AM
Daan van IJcken
Daan van IJcken - avatar
1 Réponse
+ 3
Here is one of many ways you can do this: list_1 = [account1, pass1, account2, pass2] dict = {} for i in range(0, len(list_1), 2): dict[list_1[i]] = list_1[i + 1] The loop will jump by 2 places each time it finishes. It will add the values of list_1[i] as the key, and the list_1[i + 1] as the value of that key. This algorithm assumes that the list given contains both a key and a value.
2nd Jul 2017, 10:24 AM
Sapphire