Hi all,I got a issue that how can I run several functions at same time?
say
a=1
def function1(a)
a+1
return a
def function2(b)
b+2
return b
def plotGraph(a,b)
return graph
how can I just run plotGraph function here?..I am totally newb..hope anyone can help..thanks