给出这个示例代码:
start = time.clock()
while (abs(x**2 - userInput) > epsilon):
x = 0.5 * (x + (userInput/x))
count = count+1
end = time.clock()
print(end-start)
考虑到这个操作,花很少的时间,我怎样才能获得更精确的计时器?
我查看了timeit
模块,但无法弄清楚如何使用它或者它是否是我想要的。
答案 0 :(得分:2)
使用timeit很简单。 Timer实例需要两个字符串,第一个包含对time的操作,第二个包含在计时开始之前执行一次的设置操作。以下代码应该可以工作,只需将变量值更改为您想要的任何值。
import math
import time
from timeit import Timer
userInput = "0"
while not userInput.isdigit() or int(userInput) <= 0:
userInput = input("Calcular la raiz de: ") #Get input from user (userInput)
userInput = int(userInput)
epsilon = 0.000001
x=1
count=0
setup = 'from __main__ import userInput, epsilon, x, count'
operations = '''
x = 1
count = 0
while (abs(x**2 - userInput) > epsilon):
x = 0.5 * (x + (userInput/x))
count = count+1
'''
print('The operations took %.4f microseconds.' % Timer(operations, setup).timeit(1))
#run the operations again to get the x and count values
x = 1
count = 0
while (abs(x**2 - userInput) > epsilon):
x = 0.5 * (x + (userInput/x))
count = count+1
print("La raíz de", userInput, "es:",x,"implicó",count,"intentos")
这将使您的代码默认运行一百万次,并返回运行所用的总时间(以秒为单位)。您可以通过将数字传递到timeit()
来运行它不同的次数。
答案 1 :(得分:0)
我没有将这种方式与timeit进行比较,但有时我使用datetime减法来快速和肮脏的时间。当我回到家进行比较时,我会进行一些测试。
import datetime
x = 1
count = 0
userInput = 1
epsilon = 1
start = datetime.datetime.now()
while (abs(x**2 - userInput) > epsilon):
x = 0.5 * (x + (userInput/x))
count = count+1
print datetime.datetime.now() - start, "s"
结果:
0:00:00.000011 s