2
I’m trying to return multiple values from one function to another with multiple parameters:
def chamar_ab():
a = 1
b = 2
return a, b #tupla
def soma(x, y):
return x + y
But using it doesn’t seem possible:
soma(chamar_ab())
How to make it work using tuple?