-
python 시간 계산Programming/Python 2022. 4. 20. 15:27반응형
start_dt = '2022-04-20 00:05:34' end_dt = '2022-04-20 12:19:17' from datetime import datetime def get_seconds(start_dt,end_dt,fm='%Y-%m-%d %H:%M:%S'): time_1 = datetime.strptime(start_dt,fm) time_2 = datetime.strptime(end_dt,fm) return (time_2 - time_1).seconds get_seconds(start_dt,end_dt)
Result:
44023
반응형'Programming > Python' 카테고리의 다른 글
Python FastAPI를 이용해서 빠르게 API 환경 구축하기 (0) 2022.07.28 Python3 Flask를 이용해서 Rest-API Server 만들기! (0) 2022.06.26 Python argparse 사용하기! (터미널에서 python을 실행할 때, 옵션을 쉽게주자) (0) 2021.05.28 [matplotlib]플롯의 특정 부분만 색상 변경하기 (0) 2021.04.06 (로컬)Python에서 Google Drive 공유파일 다운로드 받는 방법 (0) 2021.04.02