2018年11月20日火曜日

開発環境

入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の8章(データの行き先)、8.7(復習問題)8-1、2.を取り組んでみる。

コード(Emacs)

Python 3

#!/usr/bin/env python3
print('1.')
test = 'This is a test of the emergency text system'
with open('test.txt', 'w') as f:
    print(test, end='', file=f, )

print('2.')
with open('test.txt') as f:
    test2 = f.read()

for t in [test, test2, test == test2]:
    print(t)

入出力結果(Terminal, Jupyter(IPython))

$ ./sample1.py
1.
2.
This is a test of the emergency text system
This is a test of the emergency text system
True
$

0 コメント:

コメントを投稿