2012年11月1日木曜日

開発環境

『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7) のII部(ビルトインオブジェクト)のまとめ演習5(ディクショナリーのキー)を解いてみる。

その他参考書籍

5.

ディクショナリーのキーには不変性をもつオブジェクト(整数、数値、タプル、文字列・・・)を使えるから。(数値も不変性をもつ。)逆に可変性をもつオブジェクト(リストとか)は使えない。

対話型セッションでの入出力結果(Terminal)

$ python
Python 3.3.0 (default, Sep 29 2012, 08:16:08) 
[GCC 4.2.1 Compatible Apple Clang 3.1 (tags/Apple/clang-318.0.58)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> D={}
>>> D
{}
>>> D[1]='a'
>>> D[2]='b'
>>> D
{1: 'a', 2: 'b'}
>>> D[(1,2,3)] = 'c'
>>> D
{1: 'a', 2: 'b', (1, 2, 3): 'c'}
>>> D[[1,2,3]]='e' # error
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>> quit()
$

0 コメント:

コメントを投稿