開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python (プログラミング言語)
Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART III.(Statements and Syntax)、Test Your Knowledge(Part III Exercises)、3.(Sorting dictionaries)を解いてみる。
その他参考書籍
3.(Sorting dictionaries)
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- d = {'a':1, 'b':2, 'c':3, 'd':4} for key in sorted(d): print('{0}: {1}'.format(key, d[key]))
入出力結果(Terminal)
$ ./sample.py a: 1 b: 2 c: 3 d: 4 $
0 コメント:
コメントを投稿