def t(b,c): print b print c d = {'b':32, 'c':321} t(*d)t(**d)
t(*d) d的鍵將被分解傳遞到函數t中,打印的是鍵名b, c函數
t(**d) d的值被分解成 b = 32 , c=321 傳遞給函數,打印的是32和321spa