pandas.Timestamp.strptime#

classmethod Timestamp.strptime(date_string, format)#

将字符串参数转换为日期时间。

此方法未实现;调用它将引发 NotImplementedError。请改用 pd.to_datetime()。

参数:
date_stringstr

要转换为日期时间的字符串。

格式str, 默认为 None

解析时间的格式字符串,例如 “%d/%m/%Y”。

参见

pd.to_datetime

将参数转换为日期时间。

datetime.datetime.strptime

返回一个与表示日期和时间的字符串相对应的日期时间,根据单独的格式字符串进行解析。

datetime.datetime.strftime

返回一个由显式格式字符串控制的日期和时间表示的字符串。

Timestamp.isoformat

返回根据 ISO 8601 格式化的时间。

例子

>>> pd.Timestamp.strptime("2023-01-01", "%d/%m/%y")
Traceback (most recent call last):
NotImplementedError