Commit 7dff96db by BellCodeEditor

auto save

parent f4af2c96
Showing with 5 additions and 13 deletions
import turtle for i in range(1,11):
pen=turtle.Pen()) for j in range(1,i+1):
pen.speed(0) print(i,"x",j,"=",i*j,end=" ")
screen=turtle.Screen() print()
screen.bgcolor("black") \ No newline at end of file
colors=["red","red","red","red","orange","orange","orange","orange","yellow","yellow","yellow","yellow","green","green","green","green"]
for i in range(3000000):
pen.pencolor(colors[i%16])
pen.forward(i)
pen.right(91)
pen.hideturtle()
turtle.done()
\ 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