兩個列表轉化成字典

d = ['a','b','c'] print(type(d)) c = ['開心','愉快','高興'] print(type(c)) a = dict(zip(d,c)) print(type(a)) print(a)
相關文章
相關標籤/搜索