2014年9月11日木曜日

開発環境

Practical Programming: An Introduction to Computer Science Using Python 3 (Pragmatic Programmers) (Paul Gries (著)、Jennifer Campbell (著)、Jason Montojo (著)、Lynn Beighley (編集)、Pragmatic Bookshelf)のChapter 9(Repeating Code Using Loops)、9.10(Exercises) 9.を解いてみる。

9.10(Exercises) 9.

コード(BBEdit)

sample9.py

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

for n in range(33, 50):
    print(n)

print('おまけ')
print('\n'.join(map(lambda n:str(n), range(33, 50))))

入出力結果(Terminal, IPython)

$ ./sample9.py
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
おまけ
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
$

0 コメント:

コメントを投稿