Commit f846916a by BellCodeEditor

save project

parent c08bfb21
Showing with 19 additions and 7 deletions
import turtle
'''import turtle
pen=turtle.Pen()
a=1
for i in range(300):
pen.forward(a)
a+=1
pen.right(91)
screen=turtle.Screen()
a=['indigo','dark green','violet','grey']
screen.bgcolor('light blue')
for i in range(1,301,1):
pen.color(a[i%4])
pen.forward(i)
pen.right(90)
pen.hideturtle()
turtle.done()
turtle.done()'''
'''a=168632874687236587365823578628768736587
b=846358685684684689457598475753987189575
print(a,'**',b,'=',(a**b))'''
for v in range(1,10):
for a in range(1,v+1):
print(a,"*",v,'=',(a*v),end=' ')
print()
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