pandas.Timedelta.microseconds#

Timedelta.microseconds#

返回微秒数 (n),其中 0 <= n < 1 毫秒。

Timedelta.microseconds = 毫秒 * 1000 + 微秒。

返回:
int

微秒数。

参见

Timedelta.components

返回所有已赋值的属性(即天、小时、分钟、秒、毫秒、微秒、纳秒)。

示例

使用字符串输入

>>> td = pd.Timedelta('1 days 2 min 3 us')
>>> td.microseconds
3

使用整数输入

>>> td = pd.Timedelta(42, unit='us')
>>> td.microseconds
42