摘要:
动态参数 函数的形式参数个数不确定、函数的形式数据类型不确定,使用动态参数,*代表元组,**代表字典。 代码案例演示 1 def func(*args,**kwargs): 2 print(args) 3 print(type(args)) 4 print(kwargs) 5 print(type( 阅读全文
posted @ 2022-06-20 19:48
$Cch$
阅读(90)
评论(0)
推荐(0)
浙公网安备 33010602011771号