Hi all, I am a newb, got a simple question, anyone can give any idea about it will be great,thanks in advance.
a=2
b=3
def functionA(a,b):
c=a+b
return c
def functionB(c)
answer=c+1
return c
but this code doesnt work....what I want is just assign functionA as one of the argument of functionB...how can I do that?
btw,whats the different between print and return?thanks