python 中参数传递 * 和 ** 的问题

Posted lullaby-suede

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中参数传递 * 和 ** 的问题相关的知识,希望对你有一定的参考价值。

python 中参数传递 * 和 ** 的问题,以 tuple和dict方式传递参数

 
 
在python中,有时会看到这样的函数定义:
    def   p1(*arg1,**arg2):
          pass
也有看到这样的函数调用:
    i=5
    function(*i)
这些都是什么意思呢?
1.传入的参数生成 tuple 和 dict
      def    p1(*a1,**a2):
             print a1,‘/n‘,a2
       p1(1,2,3,4,arg5=5,arg6=6)
       结果为:
       (1,2,3,4)
       {‘arg5‘:5,‘arg6‘:6}
2.传入的tuple 或 dict解析成参数序列
    def   q1(arg1,arg2,arg3,arg4):
          print arg1,arg2,arg3,arg4
    tu=(1,2,3,4)
    print ‘extract from tuple /n‘
    q1(*tu)

    di={‘arg1‘:1,‘arg2‘:2,‘arg3‘:3,‘arg4‘:4}
    print ‘/nextract from dict /n‘
    q1(**di)
    结果为:
    extract from tuple
    1234
    extract from dict
    1234
它们是互逆过程,在需要传递函数和函数参数的时候很有用
如:
    def    worker1(arg1):
          print arg1
    def    worker2(arg1,arg2):
          print arg1,arg2
    def   calling(callable,arg):
          callable(*arg)
if __name__="__main__":
    calling(worker1,(1,))
    calling(worker2,(1,2))







































以上是关于python 中参数传递 * 和 ** 的问题的主要内容,如果未能解决你的问题,请参考以下文章

python的参数传递是值传递还是引用传递??

Python的函数参数传递

python中定义函数和参数的传递问题

Python按值传递参数和按引用传递参数

python3爬虫POST传递参数问题

Python:通过名称和 kwargs 传递参数