def fun_01(*name): #不限定幾個參數 print(name) #預設是tuple所以印出('aaa', 'bbb', 'ccc') print(name[1]) #[1]代表tuple的第二個位置(bbb) ...
確定! 回上一頁