generated from mwc/lab_turtle
I was a little frustrated because I couldn't get the turtle to change the shape into what I wanted.
23 lines
267 B
Python
23 lines
267 B
Python
from turtle import (
|
|
forward,
|
|
back,
|
|
left,
|
|
right,
|
|
penup,
|
|
pendown,
|
|
color,
|
|
)
|
|
|
|
forward(150)
|
|
right(200 * 2 / 5)
|
|
forward(200)
|
|
right(200 * 2 / 5)
|
|
forward(200)
|
|
right(200 * 2 / 5)
|
|
forward(200)
|
|
right(200 * 2 / 5)
|
|
forward(200)
|
|
right(100 * 2 / 5)
|
|
|
|
|