Skip to content

Instantly share code, notes, and snippets.

@remram44
Created July 22, 2013 15:28
Show Gist options
  • Save remram44/6054764 to your computer and use it in GitHub Desktop.
Save remram44/6054764 to your computer and use it in GitHub Desktop.
Prefixes command output with time
import sys
import time
if __name__ == '__main__':
begin = time.time()
l = sys.stdin.readline()
while l:
sys.stdout.write("%f %s" % (time.time() - begin, l))
l = sys.stdin.readline()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment