python怎麼對字典排序
建立一個字典
dict1={'a':2,'b':3,'c':8,'d':4}
1、分別取鍵、值
取字典的所有鍵,所有的值,利用dict1.keys(),dict1.vaules(),
由於鍵,值有很多個,所以要加s,另外注意這裡要加括號,這樣的小細節不注意,很容易犯錯。
print(dict1.values(),dict1.keys())
結果:
dict_values([4, 2, 8, 3]) dict_keys(['d', 'a', 'c', 'b'])
可以看出,返回的是列表的形式
2、同時取鍵、值
同時取字典的鍵、值,dict1.items(),這裡同樣加s和括號
print(dict1.items())
結果:
dict_items([('d', 4), ('a', 2), ('c', 8), ('b', 3)])
可以看出,返回的結果是元組組成的列表
也就是說,透過dict1.items()這個函式,把字典形式的鍵、值,存在了一個元組內。
3、排序
3.1 sorted
先看一下,直接用sorted()排序的情況。
dict1={'a':2,'e':3,'f':8,'d':4} dict2 = sorted(dict1) print(dict2)
結果:
['a', 'd', 'e', 'f']
sorted()預設是對字典的鍵,從小到大進行排序。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756/viewspace-2835784/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python對字典進行排序Python排序
- python 對字典的值進行排序Python排序
- python 字典排序Python排序
- 對字典進行排序排序
- python列表怎麼排序Python排序
- 根據字典中值得大小,對字典中的項排序排序
- python序列列表怎麼排序?Python排序
- python-進階教程-通過公共鍵對字典列表排序Python排序
- Python 列表與字典 排序 的奇妙之旅Python排序
- python技巧 使用值來排序一個字典Python排序
- python中的字典賦值操作怎麼實現?Python賦值
- Python實用技法第12篇:通過公共鍵對字典列表排序:itemgetterPython排序
- python字典是什麼Python
- python根據字典內的值實現排序Python排序
- java的字典序排序Java排序
- 什麼是字典?Python字典是可變的嗎?Python
- python字典如何刪除鍵值對Python
- python中的字典是什麼Python
- C# 字典排序Array.SortC#排序
- Python 字典中一鍵對應多個值Python
- 為什麼對陣列排序讓Python迴圈執行更快陣列排序Python
- Python求職怎麼拿到對摺面試公司OfferPython求職面試
- python使用引數對巢狀字典進行取值Python巢狀
- C#各種加密方法,字典排序C#加密排序
- python-字典Python
- Python dict(字典)Python
- Python羅技字典Python
- python建立字典Python
- Python實用技法第7篇:字典上對資料執行計算:求最小值、最大值、排序Python排序
- 實驗:將系統程式對映移到 Python 字典中Python
- Python對比其他語言有什麼好處?Python就業怎麼樣?Python就業
- python中排序時對大小寫不敏感Python排序
- Python中按字母順序對列表排序Python排序
- 【Python基礎】字典Python
- Python字典介紹Python
- Python3 字典Python
- Python中字典dictPython
- Python字典dict用法Python