《Python核心編程》第二版第186頁第七章練習

來源:互聯網
上載者:User

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'
>>>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.