zoukankan      html  css  js  c++  java
  • Python 函数动态参数

    def show (*arg):
    print (arg,type(arg))
    show([11,22],[33])
    结果:([11, 22], [33]) <class 'tuple'>
    结论:一个*号传递的参数默认定义为元祖类型

    def show (**arg):
    print (arg,type(arg))
    show(k1='v1',k2='v2',k3='v3')
    结果:{'k1': 'v1', 'k3': 'v3', 'k2': 'v2'} <class 'dict'>定义
    结论:两个**号传递的参数默认定义为字典类型

    def show (*arg,**kwargs):
    print (arg,type(arg))
    print (kwargs,type(kwargs))
    show([11,22,33],[44],['a','b'],k1='v1',k2='v2')
    结果:

      ([11, 22, 33], [44], ['a', 'b']) <class 'tuple'>
      {'k2': 'v2', 'k1': 'v1'} <class 'dict'>

     结论:同时传递两个带*号的参数,在形参定义里,第一个形参只能是带一个*号,第二个形参只能是带两个*号,同时在参数传递的时候,第一个参数只能是普通的定义,第二个参数是字典的定义

    def show (*arg,**kwargs):
    print (arg,type(arg))
    print (kwargs,type(kwargs))
    #show([11,22,33],[44],['a','b'],k1='v1',k2='v2')

    li = [[11,22,33],[44],['a','b']]
    di = {'k1':'v1','k2':'v2'}
    show (li,di)

    show(*li,**di)

    结果:

      ([[11, 22, 33], [44], ['a', 'b']], {'k1': 'v1', 'k2': 'v2'}) <class 'tuple'>
      {} <class 'dict'>
      ([11, 22, 33], [44], ['a', 'b']) <class 'tuple'>
      {'k1': 'v1', 'k2': 'v2'} <class 'dict'>

     结论:通过第一种方式来传参数,python默认认为传到了第一个*号的形参那里,第二个*号不会接收参数。通过第二种方式来传递参数,才能将匹配的参数传给对应的形参。

      

      动态参数的应用

    s1 = '{0} is {1}'
    result = s1.format('alex','handsome')
    print(result)
    结果:alex is handsome

    s1 = '{0} is {1}'
    li = ['alex','handsome']
    result = s1.format(*li)
    print(result)
    结果:alex is handsome

    s1 = "{name} is {face}"
    result = s1.format(name='alex',face='handsome')
    print (result)
    结果:alex is handsome

    s1 = "{name} is {face}"
    dic = {'name':'alex','face':'handsome'}
    result = s1.format(**dic)
    print (result)
    结果:alex is handsome


  • 相关阅读:
    【LeetCode】456. 132 Pattern
    【Python&Sort】QuickSort
    Python虚拟环境的配置
    【LeetCode】459. Repeated Substring Pattern
    【LeetCode】462. Minimum Moves to Equal Array Elements II
    【LeetCode】20. Valid Parentheses
    radio 获取选中值
    页面加载时自动执行(加载)js的几种方法
    加一个字段: updateTime 更新时间
    多用户同时处理同一条数据解决办法
  • 原文地址:https://www.cnblogs.com/python-study/p/5450113.html
Copyright © 2011-2022 走看看