Commit 127d3c6d by BellCodeEditor

save project

parent 39c97ac6
Showing with 12 additions and 6 deletions
import turtle as a import turtle as a
b=a.Pen() b=a.Pen()
b.fillcolor("red")
b.begin_fill()
b.shape("turtle") b.shape("turtle")
for i in range(5): a.tracer(0)
b.fd(200) def _a(n,m):
b.rt(144) for i in range(2):
b.fd(n)
b.right(90)
b.fd(m)
b.right(90)
_a(240,160)
b.end_fill()
a.done() a.done()
......
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