pandas.Timestamp.value#

Timestamp.value#

Return the value of the Timestamp.

Returns:
int

The integer representation of the Timestamp object in nanoseconds since the Unix epoch (1970年01月01日 00:00:00 UTC).

See also

Timestamp.second

Return the second of the Timestamp.

Timestamp.minute

Return the minute of the Timestamp.

Examples

>>> ts = pd.Timestamp("2024年08月31日 16:16:30")
>>> ts.value
1725120990000000000
On this page

This Page