首页 > 代码库 > python 元组和字典中元素作为函数调用参数传递
python 元组和字典中元素作为函数调用参数传递
模式1.
def test1(*args): test3(*args) def test2(**kargs): test3(**kargs) def test3(a, b): print(a,b) test1(1,2) test2(a=1,b=2)
模式2.
def test4(a= ()): test6(*a) def test5(b = {}): test6(**b) def test6(a, b): print(a,b) test4((1, 2)) test5({‘a‘:1,‘b‘:2})
关于构建Python不定参数函数请移驾至:http://www.cnblogs.com/doudongchun/p/3704108.html
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。