python學習之字典

#######字典###### 1.爲什麼需要字典類型? In [1]: list1 = ["name", "age", "class" ] In [2]: list2 = ["lee", "12" , "math" ] In [3]: zip(list1,list2) Out[3]: [('name', 'lee'), ('age', '12'), ('class', 'math')]     
相關文章
相關標籤/搜索