2014年9月27日土曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅲ.(Statements and Syntax)、Chapter 13.(while and for loop)、Test Your Knowledge: Quiz 1.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 1.

コード(BBEdit)

sample1.py

#!/usr/bin/env python3
#-*- coding: utf-8 -*-

#  while loop は汎用的に、for loopはsequence, iterableで使うl = list(range(10))

#  while loopはカウンターが必要。for loopはいらない。
print('while loop')
i = 0
while i < 10:
    print(l[i])
    i += 1

print('for loop')
for n in l:
    print(n)

入出力結果(Terminal, IPython)

$ ./sample1.py
while loop
0
1
2
3
4
5
6
7
8
9
for loop
0
1
2
3
4
5
6
7
8
9
$

0 コメント:

コメントを投稿