8. 두 시간 문자열 사이의 시간 간격을 계산
페이지 정보
작성자 관리자 댓글 0건 조회 4,101회 작성일 20-07-23 22:25본문
s1 = date.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')
time.sleep(1)
s2 = date.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')
FMT = "%Y-%m-%d %H:%M:%S.%f"
tdelta = date.datetime.strptime(s2, FMT) - date.datetime.strptime(s1, FMT)
print(tdelta)
- 이전글UserWarning: Could not import the lzma module. Your installed Python is incomplete. 20.08.08
- 다음글딕셔너리와 반복문 20.07.23
댓글목록
등록된 댓글이 없습니다.