2018年5月14日月曜日

開発環境

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

コード(Emacs)

Python 3

#!/usr/bin/env python3

print('8-3')
filename = 'books.csv'
text = '''author,book
J R R Tolkien,The Hobbit
Lynne Truss,"Eats, Shoots & Leaves"'''
with open(filename, 'w') as f:
    print(text, file=f, end='')

with open(filename) as f:
    for line in f:
        print(line, end='')
print()

print('8-4')

import csv

with open('books.csv') as f:
    books = csv.DictReader(f)
    print(books)
    for row in books:
        print(row)

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

$ ./sample2.py
8-3
author,book
J R R Tolkien,The Hobbit
Lynne Truss,"Eats, Shoots & Leaves"
8-4
<csv.DictReader object at 0x106f2ea58>
OrderedDict([('author', 'J R R Tolkien'), ('book', 'The Hobbit')])
OrderedDict([('author', 'Lynne Truss'), ('book', 'Eats, Shoots & Leaves')])
$

0 コメント:

コメントを投稿