字典是另一種可變容器模型,且可存儲任意類型對象。
字典的每個鍵值 (key=>value) 對用冒號(:)分割,每個對之間用逗號 (,) 分割,整個字典包括在花括號 ({}) 中 ,格式如下所示:
d = {key1 : value1, key2 : value2 }
鍵必須是唯一的,但值則不必。
值可以取任何數據類型,但鍵必須是不可變的,如字符串,數字或元組。
一個簡單的字典實例:
dict = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'}
也可如此創(chuàng)建字典:
dict1 = { 'abc': 456 };
dict2 = { 'abc': 123, 98.6: 37 };
把相應的鍵放入熟悉的方括號內,如下實例:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
print "dict['Name']: ", dict['Name'];
print "dict['Age']: ", dict['Age'];
以上實例輸出結果:
dict['Name']: Zara
dict['Age']: 7
如果用字典里沒有的鍵訪問數據,會輸出錯誤如下:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
print "dict['Alice']: ", dict['Alice'];
以上實例輸出結果:
dict['Zara']:
Traceback (most recent call last):
File "test.py", line 4, in <module>
print "dict['Alice']: ", dict['Alice'];
KeyError: 'Alice'
向字典添加新內容的方法是增加新的鍵/值對,修改或刪除已有鍵/值對如下實例:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
dict['Age'] = 8; # update existing entry
dict['School'] = "DPS School"; # Add new entry
print "dict['Age']: ", dict['Age'];
print "dict['School']: ", dict['School'];
以上實例輸出結果:
dict['Age']: 8
dict['School']: DPS School
能刪單一的元素也能清空字典,清空只需一項操作。
顯示刪除一個字典用 del 命令,如下實例:
#coding=utf-8
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
del dict['Name']; # 刪除鍵是'Name'的條目
dict.clear(); # 清空詞典所有條目
del dict ; # 刪除詞典
print "dict['Age']: ", dict['Age'];
print "dict['School']: ", dict['School'];
但這會引發(fā)一個異常,因為用 del 后字典不再存在:
dict['Age']:
Traceback (most recent call last):
File "test.py", line 8, in <module>
print "dict['Age']: ", dict['Age'];
TypeError: 'type' object is unsubscriptable
注:del() 方法后面也會討論。
字典鍵的特性
字典值可以沒有限制地取任何 Python 對象,既可以是標準的對象,也可以是用戶定義的,但鍵不行。
兩個重要的點需要記住:
1)不允許同一個鍵出現兩次。創(chuàng)建時如果同一個鍵被賦值兩次,只會保存后一次賦值,如下實例:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'};
print "dict['Name']: ", dict['Name'];
以上實例輸出結果:
dict['Name']: Manni
2)鍵必須不可變,所以可以用數,字符串或元組充當,所以用列表就不行,如下實例:
#!/usr/bin/python
dict = {['Name']: 'Zara', 'Age': 7};
print "dict['Name']: ", dict['Name'];
以上實例輸出結果:
Traceback (most recent call last):
File "test.py", line 3, in <module>
dict = {['Name']: 'Zara', 'Age': 7};
TypeError: list objects are unhashable
Python字典包含了以下內置函數:
序號 | 函數及描述 |
---|---|
1 | cmp(dict1, dict2)
比較兩個字典元素。 |
2 | len(dict)
計算字典元素個數,即鍵的總數。 |
3 | str(dict)
輸出字典可打印的字符串表示。 |
4 | type(variable)
返回輸入的變量類型,如果變量是字典就返回字典類型。 |
Python字典包含了以下內置方法:
序號 | 函數及描述 |
---|---|
1 | radiansdict.clear()
刪除字典內所有元素 |
2 | radiansdict.copy()
返回一個字典的淺復制 |
3 | radiansdict.fromkeys()
創(chuàng)建一個新字典,以序列 seq 中元素做字典的鍵,val 為字典所有鍵對應的初始值 |
4 | radiansdict.get(key, default=None)
返回指定鍵的值,如果值不在字典中返回 default 值 |
5 | radiansdict.has_key(key)
如果鍵在字典 dict 里返回 True,否則返回 False |
6 | radiansdict.items()
以列表返回可遍歷的(鍵, 值) 元組數組 |
7 | radiansdict.keys()
以列表返回一個字典所有的鍵 |
8 | radiansdict.setdefault(key, default=None)
和 get() 類似, 但如果鍵不已經存在于字典中,將會添加鍵并將值設為 default |
9 | radiansdict.update(dict2)
把字典 dict2 的鍵/值對更新到 dict 里 |
10 | radiansdict.values()
以列表返回字典中的所有值 |
實例:
使用Python編寫字典程序:
代碼如下:
#coding:utf-8
# 字典創(chuàng)建 while開關 字典添加 字典尋找
dictionary = {}
flag = 'a'
pape = 'a'
off = 'a'
while flag == 'a' or 'c' :
flag = raw_input("添加或查找單詞 ?(a/c)")
if flag == "a" : # 開啟
word = raw_input("輸入單詞(key):")
defintion = raw_input("輸入定義值(value):")
dictionary[str(word)] = str(defintion) # 添加字典
print "添加成功!"
pape = raw_input("您是否要查找字典?(a/0)") #read
if pape == 'a':
print dictionary
else :
continue
elif flag == 'c':
check_word = raw_input("要查找的單詞:") # 檢索
for key in sorted(dictionary.keys()): # yes
if str(check_word) == key:
print "該單詞存在! " ,key, dictionary[key]
break
else: # no
off = 'b'
if off == 'b':
print "抱歉,該值不存在!"
else: # 停止
print "error type"
break
在線運行的展示效果不是很好,建議使用本地代碼環(huán)境進行運行!
測試結果如下所示:
添加或查找單詞 ?(a/c)a
輸入單詞(key):w3c
輸入定義值(value):w3cschool.cn
添加成功!
您是否要查找字典?(a/0)0
添加或查找單詞 ?(a/c)c
要查找的單詞:w3c
該單詞存在! w3c w3cschool.cn
添加或查找單詞 ?(a/c)
更多建議: