什么是多值参数的拆包?
num_tuple = (1,2,3,4,5)
info_dict = {"name": "老王"}
#任意定义一个多值函数
def test(*args, **kwargs):
print(args)
print(kwargs)
#1.错误的演示
test(num_tuple,info_dict)
#2.不使用拆包完成
test(1, 2, 3, 4, 5, name="老王")
#3.使用拆包完成
test(*num_tuple,**info_dict)
1。输出结果为:
2.不使用拆包的输出结果为:
3.使用拆包完成的输出结果为:
总结:对于多值参数的传递,若需要传递一个元组,则在变量前加一个 *
若需要传递一个字典,则在变量前加两个 * ,这样就能实现所谓的拆包了,很简单吧,不过在后期的使用过程中,会经常忘哦!!!