免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2690 | 回复: 0
打印 上一主题 下一主题

我的python歷程--第二天 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-10-22 21:36 |只看该作者 |倒序浏览

今天花一个多小时写了一个小函数.用来到得由昨天日期组成的字符串.
如果没有20个月的儿子在一边捣蛋,可能会快一些.
import time
def before_today():
  result = time.strftime("%Y%m%d")
  year1 = time.strftime("%Y")
  month1 = time.strftime("%m")
  day1 = time.strftime("%d")
  td = int(day1) - 1
  ty = int(year1)
  tm = int(month1)
  if td == 0:
     tm = tm - 1
     if str(tm) in ("1","3","5","7","8","10"):
td = 31
     elif str(tm) in ("4","6","9"):
        td = 30
     elif tm == 0:
        td = 31
        tm = 12
        ty = ty - 1
     elif tm == 2:
        if (ty % 4 == 0 and ty % 100  0) or (ty % 400 == 0):
           print "is RunNian"
           td = 29
        else:
            print "Not RunNian"
            td = 28
  if tm

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/2939/showart_53040.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP