def a():

  print("hi")



t = thread(target=a)

t.start()



대충 이렇게 실행하고 나서

hi 출력하면 스레드는 종료되고 없어지나여?