python時間操作 獲取微秒級別的時間差

2022-06-06 20:51:09 字數 2245 閱讀 5638

python中有兩個模組可以完成時間操作:time和datetime(相比較datetime更強大)

以下分別是兩個模組的具體資訊:

>>> dir(time)

['_struct_tm_items', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'altzone', 'asctime', 'clock', 'ctime', 'daylight', 'get_clock_info', 'gmtime',

'localtime', 'mktime', 'monotonic', 'monotonic_ns', 'perf_counter', 'perf_counter_ns', 'process_time', 'process_time_ns', 'sleep', 'strftime', 'strptime',

'struct_time', 'time', 'time_ns', 'timezone', 'tzname', 'tzset']

>>> dir(datetime.datetime)

['__add__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__',

'__init_subclass__', '__le__', '__lt__', '__ne__', '__new__', '__radd__', '__reduce__', '__reduce_ex__', '__repr__', '__rsub__', '__setattr__', '__sizeof__',

'__str__', '__sub__', '__subclasshook__', 'astimezone', 'combine', 'ctime', 'date', 'day', 'dst', 'fold', 'fromisoformat', 'fromordinal', 'fromtimestamp', 'hour',

'isocalendar', 'isoformat', 'isoweekday', 'max', 'microsecond', 'min', 'minute', 'month', 'now', 'replace', 'resolution', 'second', 'strftime', 'strptime', 'time',

'timestamp', 'timetuple', 'timetz', 'today', 'toordinal', 'tzinfo', 'tzname', 'utcfromtimestamp', 'utcnow', 'utcoffset', 'utctimetuple', 'weekday', 'year']

如果要獲取微秒級別的時間差,可以利用以下**

import datetime

begin_time = datetime.datetime.now()

end_time = datetime.datetime.now()

d_time = end_time - begin_time

再看下 d_time 的屬性和方法

>>> dir(k)

['__abs__', '__add__', '__class__', '__delattr__', '__div__', '__doc__', '__eq__', '__floordiv__', '__format__', '__ge__',

'__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__mul__', '__ne__', '__neg__', '__new__', '__nonzero__',

'__pos__', '__radd__', '__rdiv__', '__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', '__rmul__', '__rsub__', '__setattr__',

'__sizeof__', '__str__', '__sub__', '__subclasshook__', 'days', 'max', 'microseconds', 'min', 'resolution', 'seconds', 'total_seconds']

以上是 d_time 所有的屬性和函式

利用以下**可以獲取以秒為單位的時間差,小數點後6位為微秒。

通過python獲取微秒時間

import datetime import time print time.time hello datetime.datetime.now print hello s datetime.datetime hello.year,hello.month,hello.day,hello.hour,he...

linux下獲取微秒級精度的時間

使用c語言在linux環境下獲得微秒級時間 1 資料結構 int gettimeofday struct timeval tv,struct timezone tz 其引數tv是儲存獲取時間結果的結構體,引數tz用於儲存時區結果 struct timezone timezone 引數若不使用則傳入n...

C C 獲取精確到微秒級的系統時間

最近要為自己的專案開發乙個日誌模組,需要獲取精確到微秒級的系統時間,查閱了一些資料,發現在c c 裡面可以通過 gettimeofday struct timeval tv,struct timezone tz 和 localtime const time t timep 這兩個函式的配合使用來得到...