I have a small python script which draws some turtle graphics. When my script has finished running, the turtle screen automatically closes, so to be able to see the graphics
Just use turtle.done() or turtle.Screen().exitonclick() as a last command of your turtle program.