반응형
Date String to datetime
from datetime import datetime
date_string = "2022-01-01"
date_object = datetime.strptime(date_string, "%Y-%m-%d")
print(type(date_object))
print(date_object)
dateUtil 사용하기
pip3 install python-dateutil
from dateutil.parser import parse
date_string = "2022-01-01"
date_object = parse(date_string)
print(type(date_object))
print(date_object)
pandas 사용하기
pip3 install pandas
import pandas as pd
date_string = "2022-01-01"
date_object = pd.to_datetime(date_string)
print(type(date_object))
print(date_object)
728x90
반응형
'Python' 카테고리의 다른 글
[Python] Opencv 로 이미지 Rectangle, Circle, Text (2) | 2023.01.25 |
---|---|
[Python] Logging 사용하기. FileRotate, TimeRotate (0) | 2023.01.24 |
[Python] download with asyncio (0) | 2023.01.24 |
Cron Schedule 간단 설명. 예시 (0) | 2022.11.30 |
[Python] 파일 확장자 가져오기 (get file extension) (0) | 2022.11.14 |
댓글