7-1.
字典方法。哪個字典方法可以用來把兩個字典合并到一起。
【答案】
dict.update(dict2)
將字典dict2的鍵-值對添加到字典dict
7-2.
字典的鍵。我們知道字典的值可以是任意的Python對象,那字典的鍵又如何呢?請試著將除數字和字串意外的其他不同類型的對象作為字典的鍵,看看哪些類型可以,哪些不行。對那些不能作為字典的鍵的物件類型,你認為是什麼原因呢?
【答案】
Python對象:
可雜湊對象(不變類型)---數字,字串和元組(但要加以限制)
不可雜湊對象(可變類型)--列表,字典,集合
需要注意的是:值相等的數字代表同一個鍵,元組作為鍵時,其元素必須是可雜湊的。
內建函數hash()可以判斷某個對象是否可以做一個字典的鍵,如果非可雜湊類型作為參數傳遞給hash()方法,會產生TypeError錯誤,否則會產生hash值,整數。
>>> hash(1)
1
>>> hash('a')
-468864544
>>> hash([1,2])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>> hash({1:2,})
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'dict'
>>> hash(set('abc'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'
>>> hash(('abc'))
-1600925533
>>> hash(1.0)
1
>>> hash(frozenset('abc'))
-114069471
>>>
>>> hash(((1, 3, 9)))
1140186820
>>> hash(((1, 3, '9'), (1, 2)))
1944127872
>>> hash(((1, 3, '9'),[1,2], (1, 2)))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>>