본문 바로가기
  • "하나씩 기록하다보면 누군가에게 도움이 되지 않을까"
IT/Python

[Python] 현재 시간 출력

by raVineL 2021. 2. 1.
728x90

참고 > 

technote.kr/264

 

Python - datetime/time module, 현재 시간 출력 방법

datetime 혹은 time module 중 하나를 이용하여 현재 시간을 표시할 수 있다. 먼저 datetime 을 이용한 현재 시간 표현은 다음과 같다. import datetime now = datetime.datetime.now() print now 결과> $ python..

technote.kr

 

import datetime

 

now = datetime.datetime.now()

texts = str(now) + " : " + n
self.Log_Edit_1.append(texts)

 

 

result : 

 

....

2021-02-01 10:10:24.987431 : b'\x01H\x00\x00\x00\x17\x01\x03\x14\xaa0\n7\x0b\xfa\x0b\xfa\x0b\xfa\x0b\xfa\x00\x00\x00\x00\x00\x00\x00\x00'

2021-02-01 10:10:25.214453 : b'\x01I\x00\x00\x00\x17\x01\x03\x14\xaa0\n7\x0b\xfa\x0b\xfa\x0b\xfa\x0b\xfa\x00\x00\x00\x00\x00\x00\x00\x00'

2021-02-01 10:10:25.442433 : b'\x01P\x00\x00\x00\x17\x01\x03\x14\xaa0\n7\x0b\xfa\x0b\xfa\x0b\xfa\x0b\xfa\x00\x00\x00\x00\x00\x00\x00\x00'

....

728x90

댓글