def chorus(): print("") print("Oh, I don't care too much for Army life!") print("Gee Mom, I wanna go back where the roses grow") print("But they won't let me go home") def first_verse(): print("") print("They say that in the Army, the coffee's mighty fine") print( "It's good for cuts and bruises, and tastes like iodine") def second_verse(): print("") print("They say that in the Army, the biscuits are real fine") print("One rolled off a table, and killed a pal of mine") def main(): first_verse() input() # wait until the user enters something chorus() input() second_verse() input() chorus() input() print("") print("And so on with more verses... (any suggestions?)") main()