반응형
python datetime
now
현재날짜, 시간
import datetime
now = datetime.datetime.now()
print(now) # 2015-04-19 12:11:32.669083
nowDate = now.strftime('%Y-%m-%d')
print(nowDate) # 2015-04-19
nowTime = now.strftime('%H:%M:%S')
print(nowTime) # 12:11:32
nowDatetime = now.strftime('%Y-%m-%d %H:%M:%S')
print(nowDatetime) # 2015-04-19 12:11:32
728x90
반응형
'Python' 카테고리의 다른 글
[python] Dictionary 의 특정 값의 sum, max, min 값 가져오기 (0) | 2019.02.15 |
---|---|
[python] console 에서 Ctrl+C 로 종료 시 에러메시지 안뜨게 하기 (0) | 2019.02.15 |
파일 쓰기 file write read append (0) | 2019.02.14 |
[python]list dictionary sort multiple (여러 키로 정렬시키기) (0) | 2019.02.14 |
python dictionary 에서 max 값 가져오기 (key or value) (0) | 2019.02.13 |
댓글