2012年4月4日水曜日

開発環境

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

1.

確認。

入出力結果(Terminal)

$ python
Python 2.7.2 (default, Feb 12 2012, 23:50:38) 
[GCC 4.2.1 Compatible Apple Clang 3.0 (tags/Apple/clang-211.12)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> def f(a):
...     print a
... 
>>> f('python')
python
>>> f(10)
10
>>> f([1,2,3,4,5])
[1, 2, 3, 4, 5]
>>> f({'a':1,'b':2})
{'a': 1, 'b': 2}
>>> f((1,2,3,4,5))
(1, 2, 3, 4, 5)
>>> f()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: f() takes exactly 1 argument (0 given)
>>> f(1,2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: f() takes exactly 1 argument (2 given)
>>> quit()
$

0 コメント:

コメントを投稿