我正在尝试将字符串“20091229050936”转换为“05:09 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'
我如何将字符串转换为格式化的日期字符串?