摘要: def funct3(x, y=1, z=1, *tup): print((x, y, z) + tup)def funct4(x, y=1, z=1, **dictionary): print(x, y, z, dict) *tup表示任意多个无名参数,类型为tuple... 阅读全文
posted @ 2014-01-17 13:49 MagicLetters 阅读(186) 评论(0) 推荐(0) 编辑