開発環境
- 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 13.(while and for loop)、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 -*- print('while loopの場合') print('1ずつ増やす') counter = 0 while counter < 10: print(counter) counter += 1 print('2ずつ増やす') counter = 0 while counter < 10: print(counter) counter += 2 print('for loopの場合') print('1ずつ増やす') for counter in range(0, 10): print(counter) print('2ずつ増やす') for counter in range(0, 10, 2): print(counter)
入出力結果(Terminal, IPython)
$ ./sample4.py while loopの場合 1ずつ増やす 0 1 2 3 4 5 6 7 8 9 2ずつ増やす 0 2 4 6 8 for loopの場合 1ずつ増やす 0 1 2 3 4 5 6 7 8 9 2ずつ増やす 0 2 4 6 8 $
0 コメント:
コメントを投稿