Commit 99a7ddb4 by BellCodeEditor

save project

parent 2ce16b82
Showing with 11 additions and 12 deletions
""" import turtle as t
请使用turtle模块画出五角星 t.fillcolor("red")
""" t.pencolor("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.end_fill()
pen.hideturtle() t.hideturtle()
pen.done() t.done()
\ No newline at end of file
\ 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