I see what you mean, I had not realised that. Here it is.<br />
<br />
import turtle<br />
import random<br />
<br />
ash = turtle.Turtle() # This “create a new Turtle, assign it to the variable ash“<br />
ash.speed(100), ash.goto(0,0), ash.pensize(1)<br />
colours = ["black", "purple"]<br />
<br />
def drawasquare(length):<br />
for i in range(4): # Do the following 4 times makes a Square<br />
ash.forward(length)<br />
ash.right(90)<br />
<br />
def petal(t, r, angle):<br />
"""Turtle (t) draw a petal, two arcs, radius (r) and angle. """<br />
for i in range(7): # draws the petal 7 times<br />
for i in range(2): # draws 2 arcs to make a petal<br />
t.circle(r,angle) # draws arc<br />
t.left(180-angle)# turns the turtle for 2nd arc <br />
t.left(angle-(angle/2)) # turns the turtle for 7 petals<br />
<br />
def flowermid():<br />
for i in range(36):<br />
ash.color("black")<br />
drawasquare(30)<br />
drawasquare(10)<br />
ash.right(10)<br />
<br />
ash.begin_fill(), ash.color("red")<br />
petal(ash,60,100) , ash.end_fill()<br />
<br />
ash.begin_fill(), ash.color("yellow")<br />
ash.penup(), ash.goto(-5,-30), ash.pendown()<br />
ash.circle(30), ash.end_fill()<br />
ash.penup(), ash.goto(0,0), ash.pendown()<br />
flowermid()<br />
<br />
ash.hideturtle()