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()
screen=turtle
screen.bgcolor('black')
for i in range(1,999999999999999999999):
A=['red','yellow','orange','blue']
pen.forward(i)
pen.right(91)
pen.pencolor(A[i%4])
turtle.done()
\ No newline at end of file
i=1
j=1
for i in range(1,10):
print(i,'*',j,'=',(i*j))
j+=1
\ 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