turtle designs in ypthon code example
Example 1: save turtle programming python
import turtle as ts
ts.forward(100)
ts.getscreen()
ts.getcanvas().postscript(file="duck.eps")
Example 2: python turtle tutorial
>>> s = turtle.getscreen()
import turtle as ts
ts.forward(100)
ts.getscreen()
ts.getcanvas().postscript(file="duck.eps")
>>> s = turtle.getscreen()