2006年02月19日 星期日 23:30
请教大家 如何对"*Fri,17 Feb 2006 20:07:45 +0800" * 这种格式的时间 进行排序? 时间是存在列表 字典中的 格式: [{'title':'标题','time':'Fri,17 Feb 2006 17:07:02'},{'title':'标题','time':'Fri,17 Feb 2006 17:07:02'}] 谢谢各位 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060219/a13d9633/attachment.html
2006年02月19日 星期日 23:38
On 2/19/06, 瞄瞄 <icejmx at gmail.com> wrote: > 请教大家 如何对"Fri,17 Feb 2006 20:07:45 +0800" > 这种格式的时间 进行排序? > 时间是存在列表 字典中的 格式: > [{'title':'标题','time':'Fri,17 Feb 2006 > 17:07:02'},{'title':'标题','time':'Fri,17 Feb 2006 > 17:07:02'}] > 谢谢各位 > 可能要先转换一下吧,比如转成简单的 yyyy/mm/dd hh:mm:ss 这样再比较好一些。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年02月19日 星期日 23:49
还是需要在请教下 'Fri,17 Feb 2006 17:07:02' 这种格式的时间 python有函数可以直接转吗? 还是需要先sub拆出来才行呢? 转换格式后就可以直接用sort()排序吗? 谢谢 我对一些函数还不太熟悉 问的可能有点弱 不好意思 麻烦你了 在06-2-19,limodou <limodou at gmail.com> 写道: > > On 2/19/06, 瞄瞄 <icejmx at gmail.com> wrote: > > 请教大家 如何对"Fri,17 Feb 2006 20:07:45 +0800" > > 这种格式的时间 进行排序? > > 时间是存在列表 字典中的 格式: > > [{'title':'标题','time':'Fri,17 Feb 2006 > > 17:07:02'},{'title':'标题','time':'Fri,17 Feb 2006 > > 17:07:02'}] > > 谢谢各位 > > > > 可能要先转换一下吧,比如转成简单的 yyyy/mm/dd hh:mm:ss 这样再比较好一些。 > > -- > I like python! > My Blog: http://www.donews.net/limodou > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 80s Studio BLOG每一天---http://itshared.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060219/ef6998c3/attachment-0001.htm
2006年02月20日 星期一 00:09
On 2/19/06, 瞄瞄 <icejmx at gmail.com> wrote: > 还是需要在请教下 'Fri,17 Feb 2006 17:07:02' 这种格式的时间 python有函数可以直接转吗? 还是需要先sub拆出来才行呢? > 转换格式后就可以直接用sort()排序吗? > > 谢谢 我对一些函数还不太熟悉 问的可能有点弱 不好意思 麻烦你了 > >>> import time >>> t = time.strptime('Fri,17 Feb 2006 17:07:02', "%a,%d %b %Y %H:%M:%S") >>> time.strftime('%Y/%m/%d %H:%M:%S', t) '2006/02/17 17:07:02' -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年02月20日 星期一 09:21
谢谢 我去试一试 :) 在06-2-20,limodou <limodou at gmail.com> 写道: > > On 2/19/06, 瞄瞄 <icejmx at gmail.com> wrote: > > 还是需要在请教下 'Fri,17 Feb 2006 17:07:02' 这种格式的时间 python有函数可以直接转吗? > 还是需要先sub拆出来才行呢? > > 转换格式后就可以直接用sort()排序吗? > > > > 谢谢 我对一些函数还不太熟悉 问的可能有点弱 不好意思 麻烦你了 > > > >>> import time > >>> t = time.strptime('Fri,17 Feb 2006 17:07:02', "%a,%d %b %Y %H:%M:%S") > >>> time.strftime('%Y/%m/%d %H:%M:%S', t) > '2006/02/17 17:07:02' > > -- > I like python! > My Blog: http://www.donews.net/limodou > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 80s Studio BLOG每一天---http://itshared.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060220/3903444f/attachment.html
Zeuux © 2025
京ICP备05028076号