開発環境
- OS X Lion - Apple(OS)
- BBEdit - Bare Bones Software, Inc., Emacs(Text Editor)
- プログラミング言語: Python
『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7)のIV部(関数)のまとめ演習7.(引数のバリエーション)を解いてみる。
その他参考書籍
7.(引数のバリエーション)
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- def f1(a, b): print(a, b) def f2(a, *b): print(a, b) def f3(a, **b): print(a, b) def f4(a, *b, **c): print(a, b, c) def f5(a, b=2, c=3): print(a, b, c) def f6(a, b=2, *c): print(a, b, c) f1(1, 2) # 1 2 f1(b=1, a=2) # 2 1 f2(1, 2, 3) # 1 (2, 3) f3(1, x=2, y=3) # 1 {'x':2, 'y':3} f4(1, 2, 3, x=2, y=3) # 1 (2, 3) {'x':2, 'y':3} f5(1) # 1 2 3 f5(1, 4) # 1 4 3 f6(1) # 1 2 () f6(1, 3, 4) # 1 3 (4,)
入出力結果(Terminal)
$ ./sample.py 1 2 2 1 1 (2, 3) 1 {'y': 3, 'x': 2} 1 (2, 3) {'y': 3, 'x': 2} 1 2 3 1 4 3 1 2 () 1 3 (4,) $
0 コメント:
コメントを投稿