import time
import threading
def main():
while True:
time.sleep(1)
print("in thread")
t = threading.Thread(target=main, args=())
t.setDaemon(True)
t.start()
import time
import threading
def main():
while True:
time.sleep(1)
print("in thread")
t = threading.Thread(target=main, args=())
t.setDaemon(True)
t.start()