""" ants.py """ def ants(number): print "the ants go marching {} by {}, hurrah, hurrah!".format(str(number) def lyrics(number): def end(): print "and they all go marching down" print "to the ground" print "to get out" print "of the rain" def sing(number): ants() ants() print "the ants go marching {} by {}".format(str(number)) #lyrics() TODO end() def main(): sing(1) sing(2) sing(3) sing(4) sing(5) sing(6) sing(7) sing(8) sing(9) sing(10) main()