Python - 문자열(str)을 Datetime으로
2021. 8. 20. 14:59ㆍPython
우선 사용할 라이브러리는
Python에 Datetime이라는 라이브러리를 사용할것이다.
Datetime 라이브러리의
Datetime 매서드의 strptime을 이용해서 우리가 가지고있는 Str 객체를 Datetime 객체로 변환 할 수 있다.
import datetime
#String Type Datetime
date_time_str = '2018-06-29 08:15:27.243860'
#Convert Datetime Type
date_time_obj = datetime.datetime.strptime(date_time_str, '%Y-%m-%d %H:%M:%S.%f')
# Print
print(f"type : {type(date_time_obj}"
print(date_time_obj)
Datetime 객체는 일반적으로 그냥 찍을경우는
이런식으로 출력 된다. 하지만 Print를 이용할 경우는
이렇게 출력이 된다.
'Python' 카테고리의 다른 글
Python - 코드 실행시간 확인 (0) | 2021.09.11 |
---|---|
Pandas - CSV 저장 한글 깨짐 오류 (0) | 2021.08.20 |
Python - Kafka Producer 구성 (0) | 2021.07.21 |
Python - pyodbc를 이용한MS SQL 연동 (0) | 2021.07.09 |
Python - MySQL/MariaDB 접속 (0) | 2021.07.05 |