Why is my main thread not completing its task?
Advertisements In the below code the daemon thread is only giving the output whereas the main thread is not. If the main thread works independently of the "x"(daemon) thread then why isn’t it asking for input(it is just giving the output of the daemon thread). import threading import time def daemon_thread(): print() timer = 0… Read More Why is my main thread not completing its task?