Commit 84d2bf16 by BellCodeEditor

save project

parent c20f0945
Showing with 21 additions and 0 deletions
'''import turtle
pen=turtle.Pen()
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()'''
'''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