1#!/usr/bin/python2 2# 3# Copyright 2010 Google Inc. All Rights Reserved. 4"""This simulates a real job by producing a lot of output. 5 6""" 7 8from __future__ import print_function 9 10__author__ = 'asharif@google.com (Ahmad Sharif)' 11 12import time 13 14 15def Main(): 16 """The main function.""" 17 18 for j in range(10): 19 for i in range(10000): 20 print(str(j) + 'The quick brown fox jumped over the lazy dog.' + str(i)) 21 time.sleep(60) 22 23 return 0 24 25 26if __name__ == '__main__': 27 Main() 28