import datetime 입력 필요
datetime.date.today().strftime('%y-%m-%d')
년 월 일 출력
ex. '19-06-18'
datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')
년 월 일 시 분 초 밀리세컨드 출력
ex. '2019-12-16 11:04:23.050193'
!!! %Y 대문자는 2020과 같이 연도 전체 출력이고, %y 소문자는 20과 같이 연도의 뒷 두자리(십의자리수까지) 출력 !!!
datetime.datetime.now().strftime("%A, %d. %B %Y %I:%M %p")
요일, 일. 월 년 시:분 (PM/AM)
ex. 'Tuesday, 21. November 2006 04:30 PM'
datetime.datetime.now()-datetime.timedelta(days=1)
오늘 시간에서 하루 뺀 날의 년 월 일 시 분 초 출력
(datetime.datetime.now()-datetime.timedelta(days=1)).strftime('%m-%d')
오늘 시간에서 하루 뺀 날의 월 일 출력
(datetime.datetime.now()-datetime.timedelta(hours=25.5)).strftime('%Y-%m-%d %H:%M:%S')
현재 시간에서 25시간 30분 전의 년 월 일 시 분 초 출력
(datetime.date.today()).strftime('%y-%m-%d')
오늘 날짜 년 월 일 출력
( 2025년인 경우 25로 출력 )
datetime.strptime('2020-05-21', '%Y-%m-%d').strftime('%a')
'2020-05-21' 이라는 날의 요일 출력
TIP : 3일인 경우 03 으로 출력해줌
'Development > Python' 카테고리의 다른 글
[Python] How to convert Nonetype to int or string (0) | 2019.06.10 |
---|---|
[Python] How to convert tuple to list (0) | 2019.06.10 |
Python 3.6 install 및 해당 버전에 맞는 pip install (0) | 2019.05.30 |
Python 3 버전에 맞는 pip 설치하기 (0) | 2019.05.30 |
How to install Python-3.5.1 without yum error (0) | 2019.05.30 |