免费注册 查看新帖 |

Chinaunix

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

这个怎么打印出日期结果? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-17 11:32 |只看该作者 |倒序浏览
  1. import  time

  2. class Date(object):
  3.         def __init__(self,year,month,day):
  4.                 self.year = year
  5.                 self.month = month
  6.                 self.day = day
  7.         @staticmethod
  8.         def now():
  9.                 t = time.localtime()
  10.                 return Date(t.tm_year,t.tm_mon,t.tm_mday)
  11.         @staticmethod
  12.         def tomorrow():
  13.                 t = time.localtime(time.time() + 86400)
  14.                 return Date(t.tm_year,t.tm_mon,t.tm_mday)

  15. a = Date(1967,4,9)
  16. b = Date.now()
  17. c = Date.tomorrow()

  18. print b
  19. print c
复制代码
现在打印的是
<__main__.Date object at 0x01A75B90>
<__main__.Date object at 0x01A75BB0>

论坛徽章:
0
2 [报告]
发表于 2013-09-17 14:07 |只看该作者
import  time

class Date(object):
        def __init__(self,year,month,day):
                self.year = year
                self.month = month
                self.day = day
        @staticmethod
        def now():
                t = time.localtime()
                return t.tm_year,t.tm_mon,t.tm_mday
        @staticmethod
        def tomorrow():
                t = time.localtime(time.time() + 86400)
                return t.tm_year,t.tm_mon,t.tm_mday

a = Date(1967,4,9)
b = Date.now()
c = Date.tomorrow()

print b
print c

论坛徽章:
0
3 [报告]
发表于 2013-09-22 21:54 |只看该作者


import  time

class Date(object):
    def __init__(self,year,month,day):
            self.year = year
            self.month = month
            self.day = day

    def __str__(self):
        return "%04d-%02d-%02d" %(self.year,self.month,self.day)

    @staticmethod
    def now():
            t = time.localtime()
            return Date(t.tm_year,t.tm_mon,t.tm_mday)
    @staticmethod
    def tomorrow():
            t = time.localtime(time.time() + 86400)
            return Date(t.tm_year,t.tm_mon,t.tm_mday)



def main():
    a = Date(1967,4,9)
    b = Date.now()
    c = Date.tomorrow()

    print b
    print c

if __name__ == '__main__':
    main()
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP