Python论坛  - 讨论区

标题:[python-chinese] 请教python 时间排序问题

2006年02月19日 星期日 23:30

瞄瞄 icejmx at gmail.com
Sun Feb 19 23:30:51 HKT 2006

请教大家 如何对"*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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年02月19日 星期日 23:38

limodou limodou at gmail.com
Sun Feb 19 23:38:36 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年02月19日 星期日 23:49

瞄瞄 icejmx at gmail.com
Sun Feb 19 23:49:49 HKT 2006

还是需要在请教下 '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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年02月20日 星期一 00:09

limodou limodou at gmail.com
Mon Feb 20 00:09:46 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年02月20日 星期一 09:21

瞄瞄 icejmx at gmail.com
Mon Feb 20 09:21:10 HKT 2006

谢谢 我去试一试 :)

在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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号