如何将此格式更改为日期时间格式? (Python)
我有一个数据集,其中包含一些带有DateTime的列。我的问题是,我找到了这种类型的dateTime格式:
apr'11
4月11日
4月11日
如何自动将此格式更改为DateTime格式?
I have a dataset which contains some columns with datetime. My problem is, I found this type datetime format:
Apr'11
Apr-11
Apr 11
How can I automatically change this format to be datetime format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为您可以使用日期时间模块,
如果您想要任何混淆,请点击以下链接
%b = 区域设置的缩写月份名称。 (如四月、三月、一月等)
%d = 十进制数字形式的月份日期 [01,31]
您应该像 date_string 一样编写此“%b %d”,否则即使您提供了额外的空格,它也会给您。
请访问此链接了解更多相关信息:
https://docs.python.org/3/library/time.html
for you can use datetime module
this is the link if you want any confusion
%b = Locale’s abbreviated month name. (like Apr, Mar, Jan, etc)
%d = Day of the month as a decimal number [01,31]
You should write this "%b %d" same as like date_string otherwise it will give you, even if you give an extra space.
go to this link to learn more about this:
https://docs.python.org/3/library/time.html