python变长参数的使用场景

2024年07月24日 模拟登录 Python51

说明

1、为函数添加装饰器。

2、如果参数数量不确定,可以考虑使用变长参数。

例如,在读取一些配置文件中的配置项。

3、为了实现函数的多态,或者在继承的情况下,子类需要调用父类的一些方法。

实例

#coding:utf8
 
def powersum(power, **args):
    print type(args)
    print "args is %s" % args
    for k,v in args.items():
        print k,":",v
    print
 
y = {'age':18, 'name':'xxmcf'}
 
powersum(0, **y)
 
powersum(0, args=y)

以上就是python变长参数的使用场景,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/9067/

展开阅读全文