python Copy def return_multi(a): b = a+1 c = a+2 return b, c x = return_multi(5) print(x,type(x)). 輸出: textCopy (6, 7) <class 'tuple'> ...
確定! 回上一頁