[Python] Python threading
python의 threading을 이용하여 정해진 시간마다 반복적으로 현재시간을 출력하는 코드입니다.
import threading
import datetime
def repeat_output():
now = datetime.datetime.now()
print(now)
threading.Timer(3, repeat_output).start()
repeat_output()
댓글남기기