Commit 2ba5ac4d by BellCodeEditor

save project

parent 4470fca3
Showing with 19 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.pencolor("red")
pen.pensize(3)
pen.pendown()
pen.fillcolor("blue")
pen.begin_fill()
for i in range(6):
for i in range(4):
pen.forward(50)
pen.right(90)
pen.right(60)
pen.end_fill()
turtle.done()
for i in range(100000):
if i ==10000:
break
print(i)
\ 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