2007-03-31から1日間の記事一覧

Apple TV

TV

http://pc.watch.impress.co.jp/docs/2007/0329/ubiq182.htm Xbox 360 で音楽を聴く、動画*、画像を見る http://www.xbox.com/ja-JP/pcsetup/xpsp2.htm Xbox 360 で再生するには、MediaPlayerのライブラリに動画や音楽を登録しておかないといけないのかな? …

Pythonで、引数の色々な渡し方

def test(A, B, C): print A, B, C test(1, 2, 3) test(4, C=6, B=5) d = { 'A':7, 'B':8, 'C':9 } test(**d) e = dict( A=10, B=11, C=12 ) test(**e) # result # 1 2 3 # 4 5 6 # 7 8 9 # 10 11 12