码迷,mamicode.com
首页 > 编程语言 > 详细

python 可变参数的2中用法

时间:2020-05-29 15:11:19      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:cal   用法   star   nbsp   data   python3   func   ret   pre   

def add_end(L=[],x=[]):
    L.append(END)
    x.append("sss")
    print(L[1])
    print(x[0])
    return L,x
print(add_end([1, 2, 3]))

print("=================================================")

def func(a, b, c=0, *args, **kw):
    print(a =, a, b =, b, c =, c, args =, args, 
C:\Users\Administrator\AppData\Local\Programs\Python\Python35\python.exe D:/egstar/a调试/ancd.py
2
sss
([1, 2, 3, END], [sss])
=================================================
a = 1 b = 2 c = 3 args = (a, b) kw = {y: 92, x: 99}
b
99

Process finished with exit code 0

 

python 可变参数的2中用法

标签:cal   用法   star   nbsp   data   python3   func   ret   pre   

原文地址:https://www.cnblogs.com/zhenyu1/p/12987467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!