Series.dt
can be used to access series values as datetimelike and return multiple properties. Series.dt.microsecond
Pandas Series.dt.microsecond
returns an empty array containing date and time microseconds in base data of this series object.
Syntax: Series.dt.microsecond
Parameter: None
Returns: numpy array
Example # 1: Use the Series.dt.microsecond
attribute to return the microsecond of the datetime in the underlying data of the given Series object.
|
Output:
Now we will use the Series.dt.microsecond attribute
to return the microsecond of the date and time in the underlying data of this Series object.
|
Output:
As we can see from the output, the Series.dt attribute .microsecond
successfully accessed and returned the datetime microsecond in the underlying data of this series object.
Example # 2: Use the Series.dt.microsecond attribute
to return the datetime microsecond in the underlying data of this Series object.
|
Output:
We will now use the Series.dt.microsecond
attribute to return the microsecond of the date and time in base data of this Series object.
|
Exit:
As we can see from the output, the Series.dt.microsecond attribute
successfully accessed and returned the microsecond datetime in the underlying data of the given series object.