開発環境
- OS X Lion - Apple(OS)
- TextWrangler(Text Editor) (BBEditの無料機能制限版、light版)
- Script言語: Python
『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7) のII部(ビルトインオブジェクト)の9章(タプル、ファイルオブジェクト、その他)の練習問題4を解いてみる。
その他参考書籍
4.
copyはトップレベルだけをコピー。copyモジュールのdeepcopyはネストされたのも全てコピー。違いを確認。
対話型セッションでの入出力結果(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. >>> a=[1,2] >>> b=[3,a] >>> c=b.copy() >>> a [1, 2] >>> b [3, [1, 2]] >>> c [3, [1, 2]] >>> a[0]=4 >>> a [4, 2] >>> b [3, [4, 2]] >>> c [3, [4, 2]] >>> a=[1,2] >>> b=[3,a] >>> import copy >>> c=copy.deepcopy(b) >>> a [1, 2] >>> b [3, [1, 2]] >>> c [3, [1, 2]] >>> a[0]=4 >>> a [4, 2] >>> b [3, [4, 2]] >>> c [3, [1, 2]] >>> quit() $
0 コメント:
コメントを投稿