2015年1月3日土曜日

開発環境

Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 5(Py Boxes: Modules, Packages, and Programs)、Things to Do 5.6.を解いてみる。

Things to Do 5.6.

コード(BBEdit)

sample6.py

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

import collections

plain = dict([('a', 1), ('b', 2), ('c', 3)])
fancy = collections.OrderedDict([('a', 1), ('b', 2), ('c', 3)])

print(plain, fancy, sep='\n')

入出力結果(Terminal, IPython)

$ ./sample6.py
{'b': 2, 'c': 3, 'a': 1}
OrderedDict([('a', 1), ('b', 2), ('c', 3)])
$

0 コメント:

コメントを投稿