Commit 283d6b61 by BellCodeEditor

save project

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