Commit 3aa683ae by BellCodeEditor

save project

parent faf8dd05
Showing with 19 additions and 0 deletions
for q in range(9):
for i in range(1,q+1):
print(i,'*',q,'=',q*i,end=" ")
print()
\ No newline at end of file
import turtle
p=turtle.Pen()
p.hideturtle()
screen=turtle.screen()
screen.bgcolor("black")
color=['green','red','blue','purple']
for i in range(300):
p.pencolor(color[i%4])
p.forward(i)
p.left(91)
turtle.done()
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