Commit dba18b58 by BellCodeEditor

auto save

parent da20e35a
Showing with 11 additions and 12 deletions
import turtle import turtle
pen = turtle.Pen() pen=turtle.Pen()
screen = turtle.Screen() pen.shape("turtle")
screen.bgcolor("black") pen.fillcolor("red")
colors=["white","blue","violet","cyan"] pen.begin_fill()
distance=1 for i in range(36):
pen.speed(1000) pen.forward(200)
for i in range(1,300): pen.right(170)
pen.pencolor(colors[i%4]) pen.end_frll()
pen.forward(i) pen.hideturtle()
pen.right(91) turtle.done()
pen.hideturtle() \ No newline at end of file
turtle.done()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment