728x90
datetime 혹은 time module 중 하나를 이용하여 현재 시간을 표시할 수 있다.
먼저 datetime 을 이용한 현재 시간 표현은 다음과 같다.
import datetime now = datetime.datetime.now() print now |
결과>
$ python now_datetime.py 2018-06-05 10:30:06.986065 |
반면 time module을 이용하면 좀 더 세분화/정교화하여 표시할 수 있다.
import time now = time.localtime() print "%04d/%02d/%02d %02d:%02d:%02d" % (now.tm_year, now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec) |
결과>
$ python now_time.py 2018/06/05 10:24:51 |
728x90
'Language > Python' 카테고리의 다른 글
Python - Python 2 에서 Python 3 으로의 전환 (0) | 2019.03.19 |
---|---|
Python - id(), object의 unique 값(memory address)를 보여주는 함수 (0) | 2019.03.18 |
Python - if __name__ == __main__ 의 의미 (0) | 2019.02.08 |
Python - package와 module의 차이 (0) | 2018.06.16 |
Python - email package, raw email message 다루기 (0) | 2018.06.15 |
Python - poplib, POP3 를 통한 이메일 수신 (0) | 2018.06.15 |
Python - divmod(), 두 숫자를 나누어 몫과 나머지를 tuple로 반환하는 함수 (0) | 2018.01.13 |
Python - callable(), 호출 가능한 object 여부를 판단하는 함수 (0) | 2018.01.12 |