I'm executing two function in a program in a infinite loop.
In that loop i want run a particular a particular function which is out side the function, but that function also runs simultaneously with that function.
when i tried with the threading.Timer(), the function that is to be executed, it throws an exception as cannot start another thread of that function. As that function is already running in the loop.
Can u provide me the solution ASAP.
Thanks in advance......