2018年5月13日日曜日

開発環境

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

コード(Emacs)

Python 3

#!/usr/bin/env python3

print('8-1')
test1 = 'This is a test of the emergency text system'
filename = 'test.txt'

with open(filename, 'w') as f:
    print(test1, file=f, end='')

print('8-2')
with open(filename) as f:
    test2 = f.read()

print(test2)
print(test1 == test2)

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

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

0 コメント:

コメントを投稿