background (1) 썸네일형 리스트형 [ Python ] Running a background thread PythonRunning a background thread 시작 전 테스트환경 살피기 Time 2017년 09월 08일 OS Virtual Box - Linux(Ubuntu 16.04 LTS) Language Python 2.7 변수명 = threading.Thread( target=해당동작함수, args=(넘겨줄 변수) )변수명.daemon = True 변수명.start() import threading, time class Threading_Test() : def __init__(self, interval = 1) : self.interval = interval thread = threading.Thread(target=self.run, args=())thread.daemon = Truethread.. 이전 1 다음