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