[code.view]

[top] / python / PyMOTW / datetime / datetime_datetime.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """Combining dates and times into a single object.
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import datetime
     
     print 'Now    :', datetime.datetime.now()
     print 'Today  :', datetime.datetime.today()
     print 'UTC Now:', datetime.datetime.utcnow()
     
     d = datetime.datetime.now()
     for attr in [ 'year', 'month', 'day', 'hour', 'minute', 'second', 'microsecond']:
         print attr, ':', getattr(d, attr)

[top] / python / PyMOTW / datetime / datetime_datetime.py

contact | logmethods.com