keys = ['a', 'b', 'c'] values = [1, 2, 3] dictionary = dict(zip(keys, values)) print(dictionary) x = dict() x这个代码的执行结果是什么
时间: 2024-01-14 15:03:48 浏览: 110
对python中字典keys,values,items的使用详解
这段代码定义了两个列表 keys 和 values,然后使用 zip 函数将它们打包为一个元组的列表,再使用 dict 函数将这个列表转换为字典。因此,打印 dictionary 的结果为 {'a': 1, 'b': 2, 'c': 3}。
接下来,定义了一个空字典 x,因此执行这段代码不会有输出结果。
阅读全文