Python计算时间间隔(精确到微妙)的代码实例

时间:2022-09-26 07:42:55

使用python中的datetime

?
1
2
3
4
5
6
7
8
9
10
11
import datetime
oldtime=datetime.datetime.now()
print oldtime;
x=1
while x<10000000:
  x=x+1
newtime=datetime.datetime.now()
print newtime;
print u'相差:%s'%(newtime-oldtime)
print u'相差:%s微秒'%(newtime-oldtime).microseconds
print u'相差:%s秒'%(newtime-oldtime).seconds

结果如下:

Python计算时间间隔(精确到微妙)的代码实例

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接

原文链接:https://blog.csdn.net/cwcwcwcwcw26/article/details/41960381