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 tests 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" if __name__ == '__main__': first_verse() raw_input() # This is the simplest way to get input from the user. chorus() raw_input() second_verse() raw_input() chorus() raw_input() print "" print "And so on with more verses... (any suggestions?)"