2014年7月27日日曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅱ.(Types and Operations)、Chapter 5.(Numeric Types)、Test Your Knowledge: Quiz 7.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 7.

コード(BBEdit)

sample7.py

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

for n in range(10):
    print('{0} -> {1}'.format(n, float(n)))

入出力結果(Terminal, IPython)

$ ./sample7.py 
0 -> 0.0
1 -> 1.0
2 -> 2.0
3 -> 3.0
4 -> 4.0
5 -> 5.0
6 -> 6.0
7 -> 7.0
8 -> 8.0
9 -> 9.0
$

0 コメント:

コメントを投稿