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

2020-11-28 01:57

阅读:691

标签:style   blog   class   code   java   tar   

模式1. 

soscw.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)
soscw.com,搜素材

模式2. 

soscw.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})
soscw.com,搜素材

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

python 元组和字典中元素作为函数调用参数传递,搜素材,soscw.com

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

标签:style   blog   class   code   java   tar   

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


评论


亲,登录后才可以留言!