top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • Oct 10
  • 1 min read
import turtle
t=turtle.Turtle()
t.speed(0)
s=turtle.Screen()
s.bgcolor("black")
for i in range(144):
	t.color("red")
	t.penup()
	t.goto(0,0)
	t.pendown()
	t.forward(200)
	t.backward(200)
	t.right(5)
turtle.done()

ree















 
 
 

1 Comment


Guest
Oct 10

Try to run it.

Like
bottom of page