Make 2 functions run at the same time.
        Posted  
        
            by John
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by John
        
        
        
        Published on 2010-06-02T11:16:48Z
        Indexed on 
            2010/06/02
            11:24 UTC
        
        
        Read the original article
        Hit count: 147
        
Hi, I am trying to make 2 functions run at the same time.
def func1():
    print 'Working'
def func2():
    print 'Working'
func1()
func2()
Does anyone know how to do this?
© Stack Overflow or respective owner