In this project, you practice loop and defining custom functions. Draw the following shape with a for loop. Define a function draw_square(x,y,s), which draws a square centered at (x,y) and
In this project, you practice loop and defining custom functions. Draw the following shape with a for loop. Define a function draw_square(x,y,s), which draws a square centered at (x,y) and
Draw the following concentric squares that have color gradually changing from hue value 0 in the center to hue value 1 for outer squares.
Draw a stack of circles as shown here. You may need to use nested loop or custom defined functions or both.
This is an improvement on previous Sierpinski Triangle project https://pythonturtle.academy/sierpinski-triangle/ by adding Red, Green, and Blue colors to the triangles.
This classic recursive fractal shape is a must have project for Python Turtle. Draw this shape with recursion. Video demonstration of drawing process: