開発環境
- 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 10.(Introducing Python Statements)、Test Your Knowledge: Quiz 3.を解いてみる。
その他参考書籍
- Pythonチュートリアル 第2版
- Python クックブック 第2版 (原書(最新版))
- Programming Python
- Python Pocket Reference (Pocket Reference (O'Reilly))
Test Your Knowledge: Quiz 3.
コード(BBEdit)
sample3.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- for x in range(5): print('begin') for y in range(5): print(x, y) print('end') if True: print('True') else: print('else1') print('else2') print('else3') if True: print('True') else: print('else1') print('else2') print('else3') if True: print('True') else: print('else1') print('else2') print('else3')
入出力結果(Terminal, IPython)
$ ./sample3.py begin 0 0 0 1 0 2 0 3 0 4 end begin 1 0 1 1 1 2 1 3 1 4 end begin 2 0 2 1 2 2 2 3 2 4 end begin 3 0 3 1 3 2 3 3 3 4 end begin 4 0 4 1 4 2 4 3 4 4 end True else3 True else2 else3 True $
0 コメント:
コメントを投稿