Rainbow Pens ๐๏ธ
Your turtle has an infinite pack of colored pens!
turtle.pencolor("red") # change the pen color
turtle.pensize(5) # make the line thicker
turtle.bgcolor("black") # paint the whole background
Colors you can use: "red", "orange", "gold", "green",
"cyan", "blue", "purple", "magenta", "hotpink",
"white"โฆ or hex codes like "#ff6b9d"!
Your mission
Draw a picture that uses:
bgcolor()to set a background color- At least 3 different pen colors
pensize()to make lines nice and thick (size 3 or more)