Pull the pen down -- drawing when moving. Aliases: pendown | pd | down No argument. Example (for a Turtle instance named turtle): >>> turtle.pendown()
(self)
| 2175 | self.pen(pendown=False) |
| 2176 | |
| 2177 | def pendown(self): |
| 2178 | """Pull the pen down -- drawing when moving. |
| 2179 | |
| 2180 | Aliases: pendown | pd | down |
| 2181 | |
| 2182 | No argument. |
| 2183 | |
| 2184 | Example (for a Turtle instance named turtle): |
| 2185 | >>> turtle.pendown() |
| 2186 | """ |
| 2187 | if self._drawing: |
| 2188 | return |
| 2189 | self.pen(pendown=True) |
| 2190 | |
| 2191 | def isdown(self): |
| 2192 | """Return True if pen is down, False if it's up. |