import graphics as gph def main(): winOne = gph.GraphWin("It's Monday",400,400) instructions = gph.Text(gph.Point(200,50),'User Instructions Go Here') instructions.draw(winOne) promptOne = gph.Text(gph.Point(200,375),"Click Anywhere to Continue") promptOne.draw(winOne) winOne.getMouse() promptOne.undraw() instructions.setText("Let the Game Begin") winOne.getMouse() instructions.undraw() promptOne.draw(winOne) winOne.getMouse() winOne.close() # winOne.close() main()