turtle.clearstamp(stampid)
| Parameters: |
stampid – an integer, must be return value of previous stamp() call |
|---|
Delete stamp with given stampid.
>>> turtle.position()
(150.00,-0.00)
>>> turtle.color("blue")
>>> astamp = turtle.stamp()
>>> turtle.fd(50)
>>> turtle.position()
(200.00,-0.00)
>>> turtle.clearstamp(astamp)
>>> turtle.position()
(200.00,-0.00)
Please login to continue.