#!/usr/bin/env python # -*- coding: utf-8 -*- import time i=0 max=60 while i < max: print "i = %d0s" % i time.sleep(10) i = i + 1