使用Python将字符串转换为格式化的日期时间字符串

Posted pythonzhichan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Python将字符串转换为格式化的日期时间字符串相关的知识,希望对你有一定的参考价值。

我正在尝试将字符串“20091229050936”转换为“2009年12月29日(UTC)”

>>>import time
>>>s = time.strptime("20091229050936", "%Y%m%d%H%M%S")
>>>print s.strftime(‘%H:%M %d %B %Y (UTC)‘)

AttributeError: ‘time.struct_time‘ object has no attribute ‘strftime‘

显然,我犯了一个错误:时间错了,它是一个日期时间对象!它有一个日期时间组件!

>>>import datetime
>>>s = datetime.strptime("20091229050936", "%Y%m%d%H%M%S")

AttributeError: ‘module‘ object has no attribute ‘strptime‘

我是怎么意思将字符串转换为格式化的日期字符串?

 

解决方案


time.strptime返回time_struct; time.strftime接受a time_struct作为可选参数:

>>>s = time.strptime(page.editTime(), "%Y%m%d%H%M%S")
>>>print time.strftime(‘%H:%M %d %B %Y (UTC)‘, s)

05:09 29 December 2009 (UTC)


本文首发于Python黑洞网,博客园同步跟新

以上是关于使用Python将字符串转换为格式化的日期时间字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何将字符串转换为日期时间格式

如何将 python 日期时间转换为具有可读格式日期的字符串?

python模块datetime将字符串转换为日期

将字符串转换为日期格式:DD-MMM-YYYY 到 Python 中的日期时间 [重复]

将 JSON 日期字符串转换为 Python 日期时间

python 将字符串格式的日期(DD.MM.YYYY)转换为Pandas中的日期格式