Advertisement
rfmonk

time_ctime.py

Jan 16th, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. import time
  2. print 'The time is      :', time.ctime()
  3. later = time.time() + 15
  4. print '15 secs from now :', time.ctime(later)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement