python字典的遍歷與排序

字典的遍歷:函數 首先:spa items():對象 功能:以列表的形式返回字典鍵值對排序 eg:ip dict_={"a":2,"b":3,"c":6}it dict_.items()匿名函數 >>>[('a',2),('b',3),('c',6)]lambda iteritems():coding 功能:以迭代器對象返回字典鍵值對遍歷 # -*- coding: cp936 -*- dict1
相關文章
相關標籤/搜索