PYTHON CODING
- waclaw_koscielniak

- Oct 18
- 1 min read
import turtle
t = turtle.Turtle()
screen = turtle.Screen()
screen.bgcolor("black")
colors = ["red", "blue", "orange", "DarkViolet", "green", "purple", "brown", "cyan", "DarkBlue"]
for i in range(9):
t.color(colors[i])
for _ in range(25):
t.forward(100)
t.right(64)
t.right(100)
turtle.done()


Try to modify and run.