Bennett's custom turtle: Lilypad Escapades

by Bennett Chapman

21 May 2018

Check out the “Lilypad Escapades”, my custom turtle.

I began with the required inputs of background color and turtle color. Then I expanded out using cirlces on different coordinates. I used tina.penup and tina.pendown to make it so that there were no lines leading to and from the circles. Then I wanted to fill the cirlces to make them look like lilypads, so I used tina.fill.

Here is an example of one circle, or “lilypad”.

```python #First pad tina.penup() tina.goto(50,50) tina.pendown() tina.fill(True) tina.circle(30) tina.fill(False)

You met me at a very strange time in my life. Find Bennett Chapman on Twitter, Github, and on the web.