在字典中插入两个变量列表

时间:2019-03-30 20:35:52

标签: python python-3.x list dictionary shuffle

我目前有两个变量列表。第一个列表只是基本字母(我将其命名为alpha列表),第二个列表是该字母的改编版本(我将其命名为beta列表)。我想将Alpha列表插入字典的一组键中,并将Beta列表插入为一组值。

到目前为止,在这种情况下,我以前尝试过的尝试均无法解决


import random

incoding_cipher= {} #creating empty dictionaries 

decoding_cipher= {}

alpha=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']

beta= alpha[:]
random.shuffle(beta)

1 个答案:

答案 0 :(得分:0)

zip是您所需要的。试试

dict(zip(alpha, beta))