turtle.stamp()
Stamp a copy of the turtle shape onto the canvas at the current turtle position. Return a stamp_id for that stamp, which can be used to delete it by calling clearstamp(stamp_id)
.
1 2 3 4 | >>> turtle.color( "blue" ) >>> turtle.stamp() 11 >>> turtle.fd(50) |
Please login to continue.