Turtle Challenge Two
Open tu1 and File, Save As, tu2
Can you write the code for one of these shapes?
square, triangle, rectangle, pentagon, hexagon, septagon, octagon
You may need some of these codes.
Vocabulary Hash Key # The hash key is used to comment out code. All text to the right of the hash is treated as a comment. It will never be run by Python.
t.fd(50) #forward 50
t.rt(90) #right 90 degrees
t.bk(50) #back 50
t.lt(90) #left 90 degrees