strftime - 날짜 포맷 변경하기 (datetime -> str)
import datetime
raw_dates = datetime.datetime.now()
print(raw_dates)
dates = raw_dates.strftime("%Y%m%d")
print(dates)
strptime - 날짜 포맷 변경하기 (str-> datetime)
from datetime import datetime
str_datetime = '2021-04-08 21:31:48'
currdate = datetime.strptime(str_datetime, '%Y-%m-%d %H:%M:%S')
print(type(currdate))
'Python' 카테고리의 다른 글
[Python] SOLID_리스코프 치환 원칙(LSP) (0) | 2023.02.08 |
---|---|
[Python] SOLID_개방/폐쇄 원칙(OCP) (0) | 2023.02.07 |
[Python] SOLID_단일 책임 원칙(SRP) (0) | 2023.02.06 |
[Python] 이터러블 객체 (0) | 2023.02.01 |
[Python] Context Manager 일반적으로 쓰이는 예시 (2) | 2023.01.31 |