>>> import datetime
>>> now = datetime.datetime.now()
>>> now
datetime.datetime(2009, 10, 7, 16, 1, 34, 137000)
>>> now.strftime("%y.%m.%d")
'09.10.07'
>>> now.strftime("%H:%M")
'16:01'
>>> now = datetime.datetime.now()
>>> now
datetime.datetime(2009, 10, 7, 16, 1, 34, 137000)
>>> now.strftime("%y.%m.%d")
'09.10.07'
>>> now.strftime("%H:%M")
'16:01'
'컴퓨터 > Python' 카테고리의 다른 글
Python] 다른 프로그램 실행 (0) | 2010.01.19 |
---|---|
Python] Linux에서 Python 설치 (0) | 2009.10.21 |
Python]Get child directory (0) | 2009.10.09 |
Python]파일의 수정 날짜 출력하기 (0) | 2009.10.06 |
Python] SSH connection using Paramiko on Windows OS (0) | 2009.09.13 |