本教程演示瞭如何在Python 中從一個函式中返回多個值。 ... pythonCopy def return_multi(a): b = a+1 c = a+2 return b, c x = return_multi(5) ...
確定! 回上一頁