Commit 283d6b61 by BellCodeEditor

save project

parent bc13714a
Showing with 5 additions and 11 deletions
import turtle for i in range(1,10):
import random for j in range(1,i+1):
turtle.hideturtle() print(j, "*" ,i, "=" ,(j * i),end='')
turtle.speed(0) print()
a=["black","red","blue","purple"] \ No newline at end of file
for i in range(1,600):
turtle.forward(i)
turtle.right(91)
turtle.color(a[i%4])
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