写一个 Python示例,用一个实例将两个列表映射成一个字典。
在这个 python 程序中,我们使用进行循环,并带有 zip 功能。
# Python Program to Map two lists into a Dictionary
keys = ['name', 'age', 'job']
values = ['John', 25, 'Developer']
myDict = {k: v for k, v in zip(keys, values)}
print("Dictionary Items : ", myDict)
这段 Python 代码是将列表插入字典的另一种方法。在这个程序中,我们使用了 dict 关键字和 zip 函数。
keys = ['name', 'age', 'job']
values = ['John', 25, 'Developer']
myDict = dict(zip(keys, values))
print("Dictionary Items : ", myDict)
Python 将两个列表映射到字典输出中
Dictionary Items : {'name': 'John', 'age': 25, 'job': 'Developer'}
>>>
这个 Python 将两个列表映射到一个字典中的代码与上面相同。然而,在这个 python 程序中,我们允许用户插入键和值。
keys = []
values = []
num = int(input("Please enter the Number of elements for this Dictionary : "))
print("Integer Values for Keys")
for i in range(0, num):
x = int(input("Enter Key " + str(i + 1) + " = "))
keys.append(x)
print("Integer Values for Values")
for i in range(0, num):
x = int(input("Enter Value " + str(i + 1) + " = "))
values.append(x)
myDict = dict(zip(keys, values))
print("Dictionary Items : ", myDict)
Please enter the Number of elements for this Dictionary : 3
Integer Values for Keys
Enter Key 1 = 2
Enter Key 2 = 4
Enter Key 3 = 6
Integer Values for Values
Enter Value 1 = 50
Enter Value 2 = 100
Enter Value 3 = 150
Dictionary Items : {2: 50, 4: 100, 6: 150}
标签: 手机支付