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實用技法第12篇:通過公共鍵對字典列表排序:itemgetterPython排序
- python根據字典內的值實現排序Python排序
- python中的字典賦值操作怎麼實現?Python賦值
- python字典是什麼Python
- python字典如何刪除鍵值對Python
- 什麼是字典?Python字典是可變的嗎?Python
- python中的字典是什麼Python
- python使用引數對巢狀字典進行取值Python巢狀
- python-字典Python
- Python dict(字典)Python
- C#各種加密方法,字典排序C#加密排序
- Python實用技法第7篇:字典上對資料執行計算:求最小值、最大值、排序Python排序
- Python中按字母順序對列表排序Python排序
- python中排序時對大小寫不敏感Python排序
- Python中字典dictPython
- Python字典dict用法Python
- 初學Python——字典Python
- Python中的字典Python
- Python---字典方法Python
- Python3 字典Python
- python3.2:字典Python
- Python羅技字典Python
- 【Python基礎】字典Python
- python字典新增_增Python
- Python 3 字典(Dictionary)Python
- Python字典介紹Python
- Python:字典的使用Python
- python進階(24)Python字典的底層原理以及字典效率Python
- Python對比其他語言有什麼好處?Python就業怎麼樣?Python就業
- 如何在Python中對dicts列表進行排序Python排序