# # another program that needs some work # #The first verse def verse_a1(): print "The ants go marching one by one, hurrah! hurrah!" print "The ants go marching one by one, hurrah! hurrah!" def verse_a2(): print "The ants go marching two by two, hurrah! hurrah!" print "The ants go marching two by two, hurrah! hurrah!" def verse_a3(): print "The ants go marching three by three, hurrah! hurrah!" print "The ants go marching three by three, hurrah! hurrah!" def verse_a4(): print "The ants go marching four by four, hurrah! hurrah!" print "The ants go marching four by four, hurrah! hurrah!" def verse_a5(): print "The ants go marching five by five, hurrah! hurrah!" print "The ants go marching five by five, hurrah! hurrah!" def verse_a6(): print "The ants go marching six by six, hurrah! hurrah!" print "The ants go marching six by six, hurrah! hurrah!" def verse_a7(): print "The ants go marching seven by seven, hurrah! hurrah!" print "The ants go marching seven by seven, hurrah! hurrah!" def verse_a8(): print "The ants go marching eight by eight, hurrah! hurrah!" print "The ants go marching eight by eight, hurrah! hurrah!" def verse_a9(): print "The ants go marching nine by nine, hurrah! hurrah!" print "The ants go marching nine by nine, hurrah! hurrah!" def verse_a10(): print "The ants go marching ten by ten, hurrah! hurrah!" print "The ants go marching ten by ten, hurrah! hurrah!" #the second verse def verse_b1(): print "The ants go marching one by one," print "They saw a man and decided to run" def verse_b2(): print "The ants go marching two by two," print "into the slaughter for two" def verse_b3(): print "The ants go marching three by three" print "realizing the third was a bee" def verse_b4(): print "The ants go marching four by four" print "seeing their comrades on the floor" def verse_b5(): print "The ants go marching five by five" print "resisting death and staying alive" def verse_b6(): print "The ants go marching six by six" print "Carrying larvae in the mix" def verse_b7(): print "The ants go marching seven by seven" print "Hoping to see themselves in heaven" def verse_b8(): print "The ants go marching eight by eight" print "Realizing death was in their fate" def verse_b9(): print "The ants go marching nine by nine" print "Over the mine and over the sign" def verse_b10(): print "The ants go marching ten by ten" print "Equally that of men" #Third Veraw def verse_c(): print "And they all go marching on..." print "In the ground..." print "To get out..." print "Of the rain." print "Boom! Boom! Boom!" #put it all together... def song(): verse_a1() verse_b1() verse_c() print verse_a2() verse_b2() verse_c() print verse_a3() verse_b3() verse_c() print verse_a4() verse_b4() verse_c() print verse_a5() verse_b5() verse_c() print verse_a6() verse_b6() verse_c() print verse_a7() verse_b7() verse_c() print verse_a8() verse_b8() verse_c() print verse_a9() verse_b9() verse_c() print verse_a10() verse_b10() verse_c()