Home > Backend Development > Python Tutorial > python3.0 字典key排序

python3.0 字典key排序

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 11:27:01
Original
1372 people have browsed it

IDLE 3.0
>>> dic = {"aa":1,"bb":2,"ab":3}
>>> dic
{'aa': 1, 'ab': 3, 'bb': 2}
>>> for k in sorted(dic.keys()):
print (k)

aa
ab


-----------------------------------------------
字典对象其实就是键-值对
下面是字典对象的添加,修改,删除
(修改与添加方法相同,当key值不存在的时候添加)
>>> dic["cc"] = 4
>>> dic
{'aa': 1, 'cc': 4, 'ab': 3, 'bb': 2}
>>> dic["bc"] = 5
>>> dic
{'aa': 1, 'cc': 4, 'ab': 3, 'bb': 2, 'bc': 5}
>>> dic["cc"] = 6
>>> dic
{'aa': 1, 'cc': 6, 'ab': 3, 'bb': 2, 'bc': 5}
>>> del dic["cc"]
>>> dic
{'aa': 1, 'ab': 3, 'bb': 2, 'bc': 5}

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template