開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python 3.4 (プログラミング言語)
Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅱ.(Types and Operations)、Test Your Knowledge: Part II Exercises 9.(Immutable types)を解いてみる。
その他参考書籍
- Pythonチュートリアル 第2版
- Python クックブック 第2版 (原書(最新版))
- Programming Python
- Python Pocket Reference (Pocket Reference (O'Reilly))
9.(Immutable types)
コード(BBEdit)
sample9.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- s = 'spam' s = s[:1] + 'l' + s[2:] print(s) s1 = 'spam' s1 = s1[0] + 'l' + s1[2] + s1[3] print(s1) # type error 文字列は不変性を持つ(immutable)オブジェクト try: s[1] = 'l' except Exception as err: print(type(err), err)
入出力結果(Terminal, IPython)
$ ./sample9.py slam slam <class 'TypeError'> 'str' object does not support item assignment $
0 コメント:
コメントを投稿