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?
Do this:
from threading import Thread def func1(): print('Working') def func2(): print("Working") if __name__ == '__main__': Thread(target = func1).start() Thread(target = func2).start()
1.4m articles
1.4m replys
5 comments
57.0k users