def tt():

if 조건:

첫실행

else:

어쩌구 저쩌구

time.sleep(5) <--궁금

threading.Timer(10,tt).start()

tt()

인상황에서

if는 처음실행할때 한번하고 그이후엔 else만 돌거든..

근데 궁금한게 저기서 time.sleep()은 메인스레드에 걸리는 슬립인지 개별 threading.Timer(10,tt).start()에 의해 생성된 스레드 sleep인지 궁금해서..