開発環境
- 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 12.(if Tests and Syntax Rules)、Test Your Knowledge: Quiz 4.を解いてみる。
その他参考書籍
- Pythonチュートリアル 第2版
- Python クックブック 第2版 (原書(最新版))
- Programming Python
- Python Pocket Reference (Pocket Reference (O'Reilly))
Test Your Knowledge: Quiz 4.
コード(BBEdit)
sample4.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- # True is 1, False is 0 a = True + 10 b = 10 + True c = False + 10 d = 10 + False print(a, b) print(c, d)
入出力結果(Terminal, IPython)
$ ./sample4.py 11 11 10 10 $
0 コメント:
コメントを投稿