您的当前位置:首页正文

python逆向参数收集是什么

2024-07-17 来源:钮旅网

说明

1、逆向参数收集,即直接将列表,元组,字典作为函数参数。不过调用函数时要对实参加上*号。

2、即使是支持收集的参数,如果程序需要将一个元组传输元组,也需要使用逆向收集。

实例

def param_test(name, age):
    print('name=', name)
    print('age=', age)
 
data = ['python之父', 18]
param_test(*data)

以上就是python逆向参数收集的介绍,希望对大家有所帮助。更多Python学习指路:

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

显示全文