使用zip函数, 把key和value的list组合在一起, 再转成字典(dict).
代码:
# -*- coding: utf-8 -*- keys = ['a', 'b', 'c'] values = [1, 2, 3] dictionary = dict(zip(keys, values)) print dictionary """ 输出: {'a': 1, 'c': 3, 'b': 2} """
Copyright @ 2024 mthoutai Powered by .NET 9.0 on Kubernetes Powered by: .Text and ASP.NET Theme by: .NET Monster