i want to set the output of a function as the input of the other function, like this
def math(a,b):
some code...
return(a,b,c)
def pro(a,b,c):
some code
return(e)
#and then call function by:
pro(math(a,b))
however,
TypeError: pro() missing 2 required positional arguments: 'b' and 'c'
Can you tell me how can i change my code?