RE:pythonの引数にある*hogeとか**mapとか
http://d.hatena.ne.jp/a2c/20090301/1235909666
を読んで……
>>> def func(userid,password): ... print userid , password ... >>> hoge= {'userid':'foo','password':'bar'} >>> func(**hoge) foo bar >>> def func2(foo,bar): ... print foo , bar ... >>> hoge=[1,2] >>> func2(*hoge) 1 2
関数を呼び出す側でも使える!!!!
これは超便利!!!
>>> value = '2008-03-10' >>> datetime(*map((lambda x: int(x)),value.split('-'))) datetime.datetime(2008, 3, 10, 0, 0)