SyntaxFix
Write A Post
Hire A Developer
Questions
Given a function, f, thread it like this:
f
import threading threading.Thread(target=f).start()
To pass arguments to f
threading.Thread(target=f, args=(a,b,c)).start()