Commit 177c128c by BellCodeEditor

save project

parent f3980205
Showing with 10 additions and 10 deletions
""" import turtle as t
请使用turtle模块画出五角星
""" t.fillcolor("red")
import turtle t.begin_fill()
open=turtle.pen() for i in range(5):
For i in range(5) t.forward(200)
pen.forward(200) t.right(144)
pen.right(144) t.hideturtle()
pen.hideturtle() t.end_fill()
pen.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