Python list 转dict

tech2025-07-09  6

a = [1,2,3] b = ["123","455","888"] c = dict(zip(a,b)) print(c)
最新回复(0)