範例. def test_kwargs(**kwargs): print('kwargs:',kwargs) def test_args(*args): print('args:',args) test_args(1,'a','c',2,'test') # 可以一直 ...
確定! 回上一頁