摘要:
#非關鍵字可變長參數 def add(*arg): return type(arg)print add() #打印結果 <type 'tuple'> #關鍵字變量參數 def abd(**args): return type(args)print abd() #打印結果 <type 'dict'> 閱讀全文
posted @ 2016-09-17 15:31
listen_vv
閱讀(508)
評論(0)
推薦(0)
浙公網安備 33010602011771號