20171211 查詢+心得Map two lists into a dictionary in Python

weixin_34138377發表於2017-12-12

ttps://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python


Like this:

>>>keys=['a','b','c']

>>>values=[1,2,3]

>>>dictionary=dict(zip(keys,values))

>>>print(dictionary){'a':1,'b':2,'c':3}

--{心得}: zip()支援對多個list()的多維組合,組合後是一個多維的空間裡的任何一個點,這樣理解好些

但dict()字典格式,還是限定在2維的,超過2維(就是從3維開始 ,dict()就不支援 了)


相關文章