Turtle Challenge Five
Open tu4 and File, Save As, tu5
Can you write the code for one of these shapes?
There is more than one method to do this.
Vocabulary assign is used when we connect a value to a variable. Assign 90 to the move variable.
You may need some of these code types
t.circle(100) #draws a circle with a radius of 100
t.circle(40,180) #draws a half circle with radius of 40 which covers 180 degrees
t.pu() #pen up to stop drawing
t.pd() #pen down to start drawing
move = 90 #assigns 90 to move variable
for i in range(10): #Repeats 10 times
t.fd(move) #Moves forward number assigned to move variable
t.lt(50) #Turns left
move = move + 3 #Increases move variable assigned number by 3
Screenshot
DEBUG your code if it doesn't work