2014年9月10日水曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅲ.(Statements and Syntax)、Chapter 10.(Introducing Python Statements)、Test Your Knowledge: Quiz 4.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 4.

コード(BBEdit)

sample4.py

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

# using parentheses, brackets, braces.
a = (1 + 2 +
     3 + 4 + 5)
print(a)

b = [1, 2,
     3, 4, 5]
print(b)

c = {'a':1, 'b':2,
     'c':3, 'd':4, 'e':5}
print(c)



入出力結果(Terminal, IPython)

$ ./sample4.py
15
[1, 2, 3, 4, 5]
{'a': 1, 'c': 3, 'b': 2, 'd': 4, 'e': 5}
$

0 コメント:

コメントを投稿