欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-08-03 20:51:18
我正在尝试将字符串“20091229050936”转换为“2009年12月29日(UTC)” 给 AttributeError: 'time.struct_time' object has no attribute 'strftime' 显然,我犯了一个错误:时间错了,它是一个日期时间对象!它有一个 ......

我正在尝试将字符串“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黑洞网,博客园同步跟新