Pyhton 函数 - 基础很重要
摘要:
一、大体概览一下Python的函数参数类型吧!# 1、 此类为参数缺省值,想必有过编程底子的朋友看此定然不削。切~我早知道了!^^def example(arg1 = 'zhangwei', arg2 = [], arg3 = {}, arg4 = ()) : pass # 这说明不执行任何动作比如:if (true) { }# 2、此类型参数我们姑且喊它为“收集元组类型参数” 注:该参数无法为其书写缺省值def example2(*arg1): pass # 3、此类型参数我们姑且喊它为“收集字典类型参数” 注:该参数无法为其书写缺省值def example3(**arg1) 阅读全文
posted @ 2014-04-05 16:54 羽翼飞扬 阅读(1152) 评论(2) 推荐(0) 编辑