python拆包

python拆包 def run(a,*b): print(a) print('未拆包') print(b) print('拆包') print(*b) #等同於 c,d=*b run(1,2,3) 1 未拆包 (2, 3) 拆包 2 3
相關文章
相關標籤/搜索