有可能做这样的事情吗?def multireturn(): return 1, 2, 3def add(a, b, c): return a+b+cadd(multireturn())当我尝试时,它出错了,因为它只看到一个参数。谢谢! 查看完整描述