일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- configmap
- Windows10
- 행정구역분류
- macos
- Android
- aws
- nginx-media-server
- dart
- Sysinternals
- docker
- Flutter
- RTMP
- Shell script
- aws cli
- namespace
- ffmpeg
- Python
- HLS
- Kubernetes
- spring cloud config
- Pod
- wireshark
- golang
- service
- kubectl
- deployment
- android studio
- ebpf
- Java
- VSCode
Archives
- Today
- Total
목록실행시간측정 (1)
woonizzooni
python 코드 실행 시간 측정
실행 시간 측정 timeit모듈 이용. https://docs.python.org/2/library/timeit.html https://docs.python.org/3/library/timeit.html ex) #!/usr/bin/python3 # -*- coding: utf-8 -*- import timeit def func_a(n): .... def func_b(n): .... def func_c(n): .... def func_d(n): .... print("func_a(4000) : ", timeit.timeit('func_a(4000)', "from __main__ import func_a", number=1)) print("func_b(4000) : ", timeit.timeit('func_b..
Programming/Python
2019. 7. 25. 07:47