[pyton] python으로 중간 수행시간 구하기...?
python2009. 1. 28. 23:53
# -*- coding: ms949 -*-
from math import *
from datetime import *
def main():
now1 = datetime.now()
result = 0
for i in range(1000000):
result = result + pow(i,2)
now2 = datetime.now()
time = now2-now1
print "결과 : ", result
print "시간 : ", time
main()
'python' 카테고리의 다른 글
[python] python 에서 한글 출력 하기... (0) | 2009.05.11 |
---|---|
[python] dictionary sorting (0) | 2009.04.08 |
[pyton] python에서 속도를 증가시키자... (0) | 2009.03.08 |
[pyton] django 에서 mod_python을 이용한 apache 운용... (0) | 2009.02.15 |
[pyton] python에서 mysql 사용하기. (0) | 2009.01.22 |