发布于 2019年8月16日2021年8月16日 python 两个列表组成字典 a=['fr','bo','cc'] b=[96,78,85] d={a.upper():b for a,b in zip(a,b)} # print(a) # print(b) print(d) 相关