I have a function def findSpace(aBookcase): which returns return row,column and another function which takes def setName(self, row, column, name):.
Now, when I execute aBookcase.setName(findSpace(aBookcase), name) I get TypeError: setName() takes exactly 4 arguments (3 given).
How can I make it parse the result from findSpace() as two arguments to function setName(), without changing findSpace(), because I have other code already depend on it
setNamein a Class?