문자열을 날짜로 변환 ( Convert String to Date )
from datetime import datetime
date_str = '2023-05-20'
date_object = datetime.strptime(date_str, '%Y-%m-%d').date()
print(type(date_object))
print(date_object)
결과
<class 'datetime.date'>
2023-05-20
문자열을 시간으로 변환 ( Convert String to Time )
from datetime import datetime
time_str = '13:46:11'
time_object = datetime.strptime(time_str, '%H:%M:%S').time()
print(type(time_object))
print(time_object)
결과
<class 'datetime.time'>
13:46:11
728x90
'Programing Language > Python' 카테고리의 다른 글
[Python] pydantic.error_wrappers.ValidationError (0) | 2023.05.21 |
---|---|
[Python] replace 관련 (0) | 2023.05.20 |
[Python] try except 예외 처리 (Exception) (0) | 2023.05.17 |
[Python] Json 관련 (dumps , loads) (0) | 2023.05.14 |
[Python] IndentationError: unindent does not match any outer indentation level (0) | 2023.04.26 |
댓글