The program is an illustration of loops and functions
<h3>What are functions?</h3>
Functions are named program statements that are executed when called or evoked
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition operations
<h3>The main program</h3>
The program written in Python, where comments are used to explain the lines is as follows:
#This sets the speed of the turtle to 0
speed(0)
#This function draws the bead
def draw_bead():
penup()
forward(100)
pendown()
circle(10)
penup()
backward(100)
#This loop is repeated 36 times
for i in range(36):
draw_bead()
left(10)
Read more about loops and functions at:
brainly.com/question/14284157