Define your own class to store time and date : Date Time « Development « Python






Define your own class to store time and date

import time
class now:
    def __init__(self):
        self.t = time.time()
        self.storetime()
    def storetime(self):
        self.year, \
        self.month, \
        self.day, \
        self.hour, \
        self.minute, \
        self.second, \
        self.dow, \
        self.doy, \
        self.dst = time.localtime(self.t)
n = now()
print "The year is", n.year
print n
           
       








Related examples in the same category

1.Use time structureUse time structure
2.Dates are easily constructed and formattedDates are easily constructed and formatted
3.Dates support calendar arithmeticDates support calendar arithmetic
4.Print out a date, given year, month, and day as numbersPrint out a date, given year, month, and day as numbers
5.Define class to use system time class