2014年8月20日水曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅱ.(Types and Operations)、Chapter 9.(Tuples, Files, and Everything Else)、Test Your Knowledge: Quiz 3.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 3.

コード(BBEdit)

sample3.py

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

# defaultはread mode

with open('sample3.py') as f:
    print('読み込みは可能')
    for line in f:
        print(line, end='')
    print('書き込みは出来ない。')
    try:
        print('Hello, World!', file=f)
    except Exception as err:
        print(type(err), err)

入出力結果(Terminal, IPython)

$ ./sample3.py
読み込みは可能
#!/usr/bin/env python3
#-*- codint: utf-8 -*-

# defaultはread mode

with open('sample3.py') as f:
    print('読み込みは可能')
    for line in f:
        print(line, end='')
    print('書き込みは出来ない。')
    try:
        print('Hello, World!', file=f)
    except Exception as err:
        print(type(err), err)
書き込みは出来ない。
<class 'io.UnsupportedOperation'> not writable
$

0 コメント:

コメントを投稿