码迷,mamicode.com
首页 > 编程语言 > 详细

python 元组和字典中元素作为函数调用参数传递

时间:2014-05-12 16:31:15      阅读:520      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

模式1. 

bubuko.com,布布扣
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)
bubuko.com,布布扣

模式2. 

bubuko.com,布布扣
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})
bubuko.com,布布扣

关于构建Python不定参数函数请移驾至:http://www.cnblogs.com/doudongchun/p/3704108.html

python 元组和字典中元素作为函数调用参数传递,布布扣,bubuko.com

python 元组和字典中元素作为函数调用参数传递

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/doudongchun/p/3704123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!