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 the following concentric squares that have color gradually changing from hue value 0 in the center to hue value 1 for outer squares.
Use for loop to draw the following colorful rainbow target. You may also want to use colorsys library to convert HSV colors to RGB colors.
Draw a stack of circles as shown here. You may need to use nested loop or custom defined functions or both.
This is an extension to previous spiral project https://pythonturtle.academy/spiral/. Make the spiral more beautiful by setting colors gradually from hue value 0 to hue value 1.
This classical shape can be programmed easily with a for loop. Animation of this drawing can be found here: Code:
In this project, you are going to one hundred random rectangles filled with random colors. You will learn for loop, function, random library, and setting color with (r,g,b). Video demo
In this simple python turtle project, you are going to draw a 10×10 matrix of connected circles. You can either use nested loops or define a function that draws a
In this python turtle project, you are going to draw a 7-color rainbow and a 49-color rainbow. You need to know for loop, drawing circle, and converting HSV (Hue-Saturation-Value) colorspace