Parsing return value from one method as two arguments for another function?
我有一个函数
现在,当我执行
如何让它将findspace()的结果作为函数setname()的两个参数进行解析,而不更改findspace(),因为我已经有其他代码依赖于它了
1 2 | r,c = findSpace(aBookcase) aBookcase.setName(r, c, name) |
在python 3.5或更高版本中,您只需使用
1 | aBookcase.setName(*findSpace(aBookcase), name) |