Commit 4d1b12a6 by BellCodeEditor

auto save

parent 5b02de1b
Showing with 2 additions and 9 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
cd=turtle.Pen()
cd.fillcolor("red")
cd.begin_fill()
for i in range(5):
cd.forward(200)
cd.left(144)
cd.end_fill()
turtle.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