Commit b496b5fb by BellCodeEditor

save project

parent a10ee7bd
Showing with 7 additions and 4 deletions
import turtle import turtle
请使用turtle模块画出五角星 请使用turtle模块画出五角星
for i in range(5); pen=turtle.pen()
pen,forward(200) pen.begin_fill()
pen,left(144) for i in range(5):
pen,done() pen.forward(200)
pen.left(144)
pen.hideturtle()
pen.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