Pandas 将字符串中的日期时间转换为日期时间格式
我在 Pandas 数据框中有一列,它是字符串中的日期时间条目列。 我尝试过使用该语法,但它会引起此错误。
Syntax
pd.to_datetime(df['Datetime'], format = '%y-%m-%d %H:%M:%S')
Error
time data '2020-11-01 16:23:12' does not match format '%y-%m-%d %H:%M:%S'
I have a column in Pandas dataframe which is a datetime entry column in string.
I have tried using the the syntax but it gives rise to this error.
Syntax
pd.to_datetime(df['Datetime'], format = '%y-%m-%d %H:%M:%S')
Error
time data '2020-11-01 16:23:12' does not match format '%y-%m-%d %H:%M:%S'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您使用了错误的年份格式。
Yes, you've used the wrong format for the year.
尝试 %Y,
这是备忘单:https://strftime.org/
Try %Y,
this is the cheatsheet: https://strftime.org/