python 字典排序
<lo: ="" j="lo" <a[j]):="" a[j],a[j+1]="a[j+1],a[j]"
字典排序:
d1={'y': 2, 'x': 1, 'z': 3,'a':99,'c':23,'f':15}
字典轉換序列:
c1=d1.items()
print c1
[('a', 99), ('c', 23), ('f', 15), ('x', 1), ('y', 2), ('z', 3)]
key,values位置互換:
c2=[]
for i in c1:
c2.append((i[1],i[0]))
In [15]: print c2
[(99, 'a'), (23, 'c'), (15, 'f'), (2, 'y'), (1, 'x'), (3, 'z')]
重新生成字典:
d2={}
for i in c2:
d2[i[0]]=i[1]
In [16]: print d2
{1: 'x', 2: 'y', 99: 'a', 15: 'f', 3: 'z', 23: 'c'}
進行排序:
for i in sorted(d2.keys()):
print d2[i],':',i
x : 1
y : 2
z : 3
f : 15
c : 23
a : 99
-
-
def mySort(a):
-
lo=len(a)-1
-
i=0
-
while i<lo+1:
-
j=lo
-
while j>=i:
-
if(a[j-1]>a[j]):
-
a[j],a[j-1]=a[j-1],a[j]
-
j=j-1
-
i=i+1
-
if __name__ == '__main__':
-
l1=[3,2]
-
mySort(l1)
- print l1
字典排序:
d1={'y': 2, 'x': 1, 'z': 3,'a':99,'c':23,'f':15}
字典轉換序列:
c1=d1.items()
print c1
[('a', 99), ('c', 23), ('f', 15), ('x', 1), ('y', 2), ('z', 3)]
key,values位置互換:
c2=[]
for i in c1:
c2.append((i[1],i[0]))
In [15]: print c2
[(99, 'a'), (23, 'c'), (15, 'f'), (2, 'y'), (1, 'x'), (3, 'z')]
重新生成字典:
d2={}
for i in c2:
d2[i[0]]=i[1]
In [16]: print d2
{1: 'x', 2: 'y', 99: 'a', 15: 'f', 3: 'z', 23: 'c'}
進行排序:
for i in sorted(d2.keys()):
print d2[i],':',i
x : 1
y : 2
z : 3
f : 15
c : 23
a : 99
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20747382/viewspace-2135524/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python怎麼對字典排序Python排序
- Python對字典進行排序Python排序
- python 對字典的值進行排序Python排序
- Python 列表與字典 排序 的奇妙之旅Python排序
- python技巧 使用值來排序一個字典Python排序
- python根據字典內的值實現排序Python排序
- 對字典進行排序排序
- java的字典序排序Java排序
- python-進階教程-通過公共鍵對字典列表排序Python排序
- 根據字典中值得大小,對字典中的項排序排序
- C# 字典排序Array.SortC#排序
- C#各種加密方法,字典排序C#加密排序
- python-字典Python
- Python dict(字典)Python
- Python羅技字典Python
- python建立字典Python
- Python實用技法第12篇:通過公共鍵對字典列表排序:itemgetterPython排序
- 【Python基礎】字典Python
- Python字典介紹Python
- Python3 字典Python
- Python中字典dictPython
- Python字典dict用法Python
- Python中的字典Python
- Python:字典的使用Python
- Python 3 字典(Dictionary)Python
- Python---字典方法Python
- python--字典dictPython
- 初學Python——字典Python
- Python字典的操作Python
- python3.2:字典Python
- python字典新增_增Python
- python進階(24)Python字典的底層原理以及字典效率Python
- Python中字典的操作Python
- Python基礎(04):字典Python
- python字典是什麼Python
- Python字典的特性分析Python
- Python實現建立字典Python
- python字典的小例子Python