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

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

That code does not make sense, but "running" (i.e. calling) a function is just a matter of plotGraph(a, b) .

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.