使用Python计算时间过程(纳秒)

时间:2018-05-19 09:24:16

标签: python mongodb datetime time count

我有一个mongodb数据库,我想计算查询数据库需要多长时间。我的代码到目前为止:

from pymongo import MongoClient
import time

client = MongoClient('mongodb://localhost:27017') # open connection
db = client.customer

start = time.time()

# query data mongo
q = db.atweetdata.find()

stop = time.time()-start

print(stop)

结果显示0.0。这可能是因为时间太快/太快了。

如何计算更具体纳秒的过程?感谢

1 个答案:

答案 0 :(得分:0)

通过类似的测试,我对这个问题没有任何问题:

>>> import time
>>> start = time.time(); end = time.time();
>>> print(start-end)
-2.09808349609375e-05