開発環境
- OS X Yosemite - Apple (OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python 3.4 (プログラミング言語)
Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 5(Py Boxes: Modules, Packages, and Programs)、Things to Do 5.5.を解いてみる。
Things to Do 5.5.
コード(BBEdit)
sample5.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
plain = dict(a=1, b=2, c=3)
print(plain)
入出力結果(Terminal, IPython)
$ ./sample5.py {'c': 3, 'b': 2, 'a': 1} $
0 コメント:
コメントを投稿