Don't like this style? Click here to change it! blue.css
I want you to make a dragon fractal using turtles. The problem is that there are tons of scripts on the internet which just do it for you. If I make it too different than what you find it'll probably be too tough for this homework.
So to fight that:
You can read about it on wikipedia.
The basic pattern is this: begin with a one sequence right turn, R.
For each extra iteration take every turn so far, add an R, then add the old turns in reverse order, flipped.
So the first 4 iterations are:
You'll have to decide how big to make the edges and change the color each time.
You can learn about the turtle API here: https://docs.python.org/3.3/library/turtle.html#turtle.color
Examples galore out there.