開発環境
- 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 Ⅲ.(Statements and Syntax)、Chapter 11.(Assignments, Expressions, and Prints)、Test Your Knowledge: Quiz 2.を解いてみる。
その他参考書籍
- Pythonチュートリアル 第2版
- Python クックブック 第2版 (原書(最新版))
- Programming Python
- Python Pocket Reference (Pocket Reference (O'Reilly))
Test Your Knowledge: Quiz 2.
コード(BBEdit)
sample2.py
#!/usr/bin/env python3
#-*- coding: utf-8 -*-
# オブジェクトへの参照であり、あるの変数の値の変更が他の変数の値にも影響するから
a = b = c = []
print(a, b, c)
a.append('a')
print(a, b, c)
入出力結果(Terminal, IPython)
$ ./sample2.py [] [] [] ['a'] ['a'] ['a'] $
0 コメント:
コメントを投稿