2014年12月17日水曜日

開発環境

Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 4(Py Crust: Code Structures)、Things to Do 4.3.を解いてみる。

Things to Do 4.3.

コード(BBEdit)

sample3.py

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

for n in [3, 2, 1, 0]:
    print(n)

入出力結果(Terminal, IPython)

$ ./sample3.py
3
2
1
0
$

0 コメント:

コメントを投稿