I\'m currently trying to figure out how threads work in python.
I have the following code:
def func1(arg1, arg2): print current_thread() ...
You're executing the function instead of passing it. Try this instead:
t1 = threading.Thread(target = func1, args = (arg1, arg2))