Commit c66beb34 by BellCodeEditor

save project

parent 79ab1fb1
Showing with 3 additions and 27 deletions
import turtle
sc=turtle.Screen()
sc.bgcolor("black")
t=turtle.Pen()
t.speed(0)
c=["lightblue","lightpink","red","green"]
for i in range(300):
t.pencolor(c[i%4])
t.forward(i)
t.left(91)
t.ht()
turtle.done()
i=6
j=7
print(i,"*",i,"="(i*j))
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