2014年10月8日水曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅲ.(Statements and Syntax)、Chapter 14.(Iterations and Comprehensions)、Test Your Knowledge: Quiz 4.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 4.

コード(BBEdit)

sample4.py

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

with open('sample4.py') as f:
    for line in f:
        print(line, end='')

入出力結果(Terminal, IPython)

$ ./sample4.py
#!/usr/bin/env python3
#-*- coding: utf-8 -*-

with open('sample4.py') as f:
    for line in f:
        print(line, end='')

$

0 コメント:

コメントを投稿