Commit 0af23330 by BellCodeEditor

save project

parent aec04f83
Showing with 14 additions and 11 deletions
for j in range(1,10):
for i in range(1,j+1):
print(i,'*',j,'*',i*j,end=' ')
i=i+1
print( )
\ No newline at end of file
import turtle
pen=turtle.Pen() i=1
screen=turtle j=1
screen.bgcolor('black') for i in range(1,10):
for i in range(1,999999999999999999999): print(i,'*',j,'=',(i*j))
A=['red','yellow','orange','blue'] j+=1
pen.forward(i) \ No newline at end of file
pen.right(91)
pen.pencolor(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