我正在用python编写一个脚本,我需要知道我的代码中两点之间有多少毫秒。
当程序像这样启动时,我有一个全局变量:
from datetime import datetime
a=datetime.now()
当我需要知道已经过去了多少毫秒时,我执行以下命令:
b=datetime.now()
print (b.microseconds-a.microseconds)*1000
但是我收到此错误:
AttributeError: 'datetime.datetime' object has no attribute 'microseconds'
怎么了?我怎样才能解决这个问题?