Commit 0bce033b by BellCodeEditor

save project

parent 2faf2272
Showing with 6 additions and 1 deletions
import turtle
turtle.speed(0)
turtle.pensize(5)
colors=["red","skyblue","orange","yellow"]
for i in range(3,20000000):
turtle.color(color[i%4])
turtle.color(colors[i%4])
turtle.forward(i)
turtle.right(91)
turtle.done()
i = 5
j = 3
print(j,'*',i,'=',(j*i))
\ No newline at end of file
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