Commit 2b5372b9 by BellCodeEditor

save project

parent 836cba06
Showing with 18 additions and 0 deletions
for i in range(1,10):
for j in range(1,i+1):
print(j,"*",i,"=",j*i,end = " ")
print()
\ No newline at end of file
import turtle
turtle.pencolor('orange')
turtle.fillcolor("yellow")
turtle.begin_fill()
for i in range(20):
for j in range(4):
turtle.forward(100)
turtle.left(90)
turtle.left(18)
turtle.end_fill()
turtle.hideturtle()
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