[code.view]

[top] / python / PyMOTW / time / time_ctime.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     #end_pymotw_header
     
     import time
     
     print 'The time is      :', time.ctime()
     later = time.time() + 15
     print '15 secs from now :', time.ctime(later)

[top] / python / PyMOTW / time / time_ctime.py

contact | logmethods.com