redhat python笔试题
摘要:
1. *与** 传递参数def fun(x,*y,**z): print zfun(1,2,3)答案:{}python提供了两种特别的方法来定义函数的参数:(1). 位置参数 *args, 把参数收集到一个元组中,作为变量args def show_args(*args): => show_args("hello", "world")(2). 关键字参数 **kwargs, 是一个正常的python字典类型,包含参数名和值 def show_kwargs(**args): = > show_kwargs(foo="bar" 阅读全文
posted @ 2013-10-17 16:30 redSunflower 阅读(381) 评论(0) 推荐(0) 编辑