- 论坛徽章:
- 0
|
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()
|
|