Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import time
- for i in range(6, 1, -1):
- print '%s %0.2f %0.2f' % (time.ctime(),
- time.time(),
- time.clock())
- print 'Sleeping', i
- time.sleep(i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement