def showInstructions(): print 'Here are the instructions:' print 'Press a for ...' def playGame(): name = raw_input('What is your name? ') print 'Oh hello', name def showEnding(): print 'Goodbye' showInstructions() playGame() showEnding()