2013年5月16日木曜日

開発環境

『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7)のIV部(関数)のまとめ演習1.(簡単な関数)を解いてみる。

その他参考書籍

1.(簡単な関数)

コード(BBEdit)

sample.py

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

def func(x):
    print(x)

for x in ["spam", [1,2,3,4,5], {'a':1,'b':2}, (1, 2), None, True, {1,2}]:
    func(x)

try:
    func(1, 2)
except Exception as err:
    print(type(err), err, err.args)

入出力結果(Terminal)

$ ./sample.py
spam
[1, 2, 3, 4, 5]
{'b': 2, 'a': 1}
(1, 2)
None
True
{1, 2}
<class 'TypeError'> func() takes 1 positional argument but 2 were given ('func() takes 1 positional argument but 2 were given',)
$

0 コメント:

コメントを投稿