2005年11月10日 星期四 10:44
如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢.
2005年11月10日 星期四 10:51
在 05-11-10,zhu dan<zhudaneu at gmail.com> 写道: > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. > 使用 timedate 模块!! 你的计算直接有函式支持的! -- # Time is unimportant, only life important! ## 面朝开源,我心自由!
2005年11月10日 星期四 10:56
这样行不 >>> import time >>> time.localtime() (2005, 11, 10, 10, 48, 9, 3, 314, 0) >>> time.localtime(time.time() + 86400 * 3) (2005, 11, 13, 10, 56, 19, 6, 317, 0) 在 05-11-10,zhu dan<zhudaneu at gmail.com> 写道: > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > >
2005年11月10日 星期四 11:10
calendar模块 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051110/caf21dad/attachment.html
2005年11月10日 星期四 11:13
好,谢谢了. 在 05-11-10,wolfg<wolfg1969 at gmail.com> 写道: > 这样行不 > >>> import time > >>> time.localtime() > (2005, 11, 10, 10, 48, 9, 3, 314, 0) > >>> time.localtime(time.time() + 86400 * 3) > (2005, 11, 13, 10, 56, 19, 6, 317, 0) > > 在 05-11-10,zhu dan<zhudaneu at gmail.com> 写道: > > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. > > > > _______________________________________________ > > Python中文技术讨论邮件列表 > > 发言: 发邮件到 python-chinese at lists.python.cn > > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > >
2005年11月10日 星期四 11:39
> > > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. from datetime import datetime,timedelta t1 = datetime.today() t2 = t1 + timedelta(3) -- If U can see it, then U can do it If U just believe it, there's nothing to it I believe U can fly From Jetport at gmail.com
2005年11月10日 星期四 11:44
zhu dan已经说明了,用的是python2.2版 在 05-11-10,Jerry<jetport at gmail.com> 写道: > > > > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. > > from datetime import datetime,timedelta > > t1 = datetime.today() > t2 = t1 + timedelta(3) > > > -- > If U can see it, then U can do it > If U just believe it, there's nothing to it > I believe U can fly > From Jetport at gmail.com > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > >
2005年11月10日 星期四 12:38
再次谢谢大家,我的python是2.2版的,现在功能已经实现了. 我是个python初学者,刚刚要实现一个将一周前的数据库备份文件删除的功能. 我将代码共享,初学者或有需要的也可以参考: import os,time time=time.localtime(time.time()-86400*7) timestring='%04d%02d%02d'%(time[0],+time[1],time[2]) for filename in os.listdir('..\data'): if(filename[0:11]=='OR92_BACKUP' and filename[11:19]<wolfg1969 at gmail.com> 写道: > zhu dan已经说明了,用的是python2.2版 > > 在 05-11-10,Jerry<jetport at gmail.com> 写道: > > > > > 如何求得某一日期若干天后的日期,比如三天后的日期.我用的是python2.2版,里面只有time模块,不知可否实现,谢谢. > > > > from datetime import datetime,timedelta > > > > t1 = datetime.today() > > t2 = t1 + timedelta(3) > > > > > > -- > > If U can see it, then U can do it > > If U just believe it, there's nothing to it > > I believe U can fly > > From Jetport at gmail.com > > > > _______________________________________________ > > Python中文技术讨论邮件列表 > > 发言: 发邮件到 python-chinese at lists.python.cn > > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > >
2005年11月10日 星期四 17:20
好啊,这样可以分散一下流量 北京和武汉都可以各放一份 我先传到Jianyu提供的FTP上面, 然后把地址告诉梅兄和ZQ兄还有老潘 估计会明天晚上传到FTP上面吧:)我家的宽带还没搞定 -----原始邮件----- 发件人: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]代表 梅劲松 发送时间: 2005年11月10日 16:34 收件人: fluke at sfcube.net; python-chinese at lists.python.cn 主题: Re: [python-chinese] 华蟒华东分组10月29号聚会视频放哪里? 放我这里。 在 05-11-10,Fluke<fluke.l at gmail.com> 写道: > 同样期待 > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 > python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > -- 梅劲松
2005年11月11日 星期五 00:07
我过几天租空间,如果不大可以分流 On 11/10/05, Liming_Do <Liming_Do at smics.com> wrote: > > 好啊,这样可以分散一下流量 > 北京和武汉都可以各放一份 > 我先传到Jianyu提供的FTP上面, > 然后把地址告诉梅兄和ZQ兄还有老潘 > 估计会明天晚上传到FTP上面吧:)我家的宽带还没搞定 > > -----原始邮件----- > 发件人: python-chinese-bounces at lists.python.cn > [mailto:python-chinese-bounces at lists.python.cn]代表 梅劲松 > 发送时间: 2005年11月10日 16:34 > 收件人: fluke at sfcube.net; python-chinese at lists.python.cn > 主题: Re: [python-chinese] 华蟒华东分组10月29号聚会视频放哪里? > > > 放我这里。 > > 在 05-11-10,Fluke<fluke.l at gmail.com> 写道: > > 同样期待 > > _______________________________________________ > > Python中文技术讨论邮件列表 > > 发言: 发邮件到 python-chinese at lists.python.cn > > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > > 退订: 发送 unsubscribe 到 > > python-chinese-request at lists.python.cn > > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > 梅劲松 > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > -- Yours, fluke fluke at sfcube.net http://sfcube.net/blog -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051111/bc3f4edc/attachment.html
Zeuux © 2025
京ICP备05028076号