Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- Unity
- 유니티
- tensorflow
- swift
- 라즈베리파이
- node.js
- ubuntu
- 맛집
- flutter
- 날짜
- Linux
- port
- urllib
- Excel
- 함수
- GIT
- PyQt
- javascript
- pandas
- MS-SQL
- python
- MySQL
- sqlite
- 다이어트
- mssql
- IOS
- PER
- ASP
- PyQt5
- 리눅스
Archives
목록threading (1)
아미(아름다운미소)
python 해당시간에 특정작업실행
오전 8시 30분에서 오후 8시 30분까지 30초 인터벌로 TaskA 의 특정작업실행하기 # -*- coding: utf-8 -*- ''' Created on 2018. 9. 4. @author: bhm ''' from datetime import time, datetime import threading class syncTask: def __init__(self): pass def TaskA(self): morning = time(8, 30) # 시각 객체 evening = time(20, 30) now = datetime.now().time() # 일시 객체 dt = datetime.now() print dt if morning now: print morning print now print eveni..
랭귀지/python
2018. 9. 5. 09:00