Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 기타 연주
- paramiko
- label
- VS Code
- Visual Studio
- 오류
- C#
- SSH
- windows forms
- pip
- Linux
- Python
- 프로그래머스
- Docker
- mysql
- OpenCV
- LIST
- Numpy
- YOLO
- ubuntu
- C
- Selenium
- C++
- 핑거스타일
- 명령어
- pandas
- 채보
- error
- pytorch
- JSON
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python 특정 코드 실행 시간 시간:분:초 출력 본문
datetime 모듈의 timedelta 를 이용한다.
from datetime import timedelta
import time
delta = timedelta(days=50, seconds=27, microseconds=10, milliseconds=4, minutes=5, hours=8, weeks=1)
print(delta)
start_time = time.time()
temp_list = []
for i in range(0, 100000001):
temp_list.append(i + 1)
total_time_str = str(timedelta(seconds=int(time.time() - start_time)))
print(total_time_str)
'Python' 카테고리의 다른 글
Python 리스트 내포(List Comprehension) (1) | 2022.09.19 |
---|---|
Python 경로 확장자, 파일 이름 분리 (0) | 2022.09.17 |
Python 날짜 문자열 변환 (0) | 2022.08.25 |
Python RLock 자원 동시 접근 관리 (0) | 2022.07.22 |
Python Error argument after * must be an iterable, not Queue (0) | 2022.06.10 |
Comments