有可能做這樣的事情嗎?def multireturn(): return 1, 2, 3def add(a, b, c): return a+b+cadd(multireturn())當我嘗試時,它出錯了,因為它只看到一個參數。謝謝! 查看完整描述