You can use a star *to unpack the result - which is a tuple of the call function function1after placing it as an argument inside another function. This causes the elements returned from function1as positional arguments in the second:
exampleItem.exampleName(*function1(), name)
In Python, 2.xyou can do the same, but you need to provide the remaining positional arguments in the form of a keyword to make it work with *:
exampleItem.exampleName(*function1(), name=name)
this also works on Python 3.x, so you have no portability issues.
, row, column = function1(), :
exampleItem.exampleName(row, column, name)
- . , : -)