datetime.now() 함수와 format 함수를 사용하면 된다.
datetime.now()는 현재 시간을 datetime 형태로 반환한다.
format 과 관련해서는 http://docs.python.org/2/library/string.html#formatstrings 페이지를 참조하자.
from datetime import datetime print "{:%Y%m%d%H%M%S}".format(datetime.now())
반응형
'Python > Python' 카테고리의 다른 글
Python - Custom Exception (사용자 정의 Exception) (0) | 2014.01.18 |
---|---|
Python - inline if 문 (0) | 2014.01.16 |
Python - 문자를 ASCII 코드로, ASCII 코드를 문자로 (0) | 2014.01.08 |
Python - 파라미터 앞에 *, ** 의 의미? (*args, **kwargs) (1) | 2013.12.24 |
Python - filter() (0) | 2013.12.20 |