2012年5月25日金曜日

開発環境

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

3.

入出力結果(Terminal)

$ python
Python 3.2.3 (default, Apr 18 2012, 20:17:30) 
[GCC 4.2.1 Compatible Apple Clang 3.0 (tags/Apple/clang-211.12)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> L=[1,2,3,4]
>>> L[2]=[]
>>> L==[1,2,[],4]
True
>>> L
[1, 2, [], 4]
>>> L[2:3]=[]
>>> L==[1,2,4]
True
>>> L
[1, 2, 4]
>>> del L[0]
>>> L==[2,4]
True
>>> L
[2, 4]
>>> L[1:2]=1
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only assign an iterable
>>> del L[0:]
>>> L
[]
>>> quit()
$

0 コメント:

コメントを投稿